Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-22 05:10:29 +01:00
Merge pull request #141 from mprasil/profile_update
Add PUT alias for profile update
Dieser Commit ist enthalten in:
Commit
e46fc62b78
2 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen
|
@ -73,6 +73,11 @@ struct ProfileData {
|
|||
Name: String,
|
||||
}
|
||||
|
||||
#[put("/accounts/profile", data = "<data>")]
|
||||
fn put_profile(data: JsonUpcase<ProfileData>, headers: Headers, conn: DbConn) -> JsonResult {
|
||||
post_profile(data, headers, conn)
|
||||
}
|
||||
|
||||
#[post("/accounts/profile", data = "<data>")]
|
||||
fn post_profile(data: JsonUpcase<ProfileData>, headers: Headers, conn: DbConn) -> JsonResult {
|
||||
let data: ProfileData = data.into_inner().data;
|
||||
|
|
|
@ -14,6 +14,7 @@ pub fn routes() -> Vec<Route> {
|
|||
routes![
|
||||
register,
|
||||
profile,
|
||||
put_profile,
|
||||
post_profile,
|
||||
get_public_keys,
|
||||
post_keys,
|
||||
|
|
Laden …
In neuem Issue referenzieren