mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-06-15 07:10:07 +00:00
Support editing collections from user vault
This commit is contained in:
parent
9273c38b69
commit
2215bdf018
2 changed files with 12 additions and 0 deletions
|
@ -76,6 +76,11 @@ fn get_cipher_admin(uuid: String, headers: Headers, conn: DbConn) -> JsonResult
|
|||
get_cipher(uuid, headers, conn)
|
||||
}
|
||||
|
||||
#[get("/ciphers/<uuid>/details")]
|
||||
fn get_cipher_details(uuid: String, headers: Headers, conn: DbConn) -> JsonResult {
|
||||
get_cipher(uuid, headers, conn)
|
||||
}
|
||||
|
||||
#[derive(Deserialize, Debug)]
|
||||
#[allow(non_snake_case)]
|
||||
struct CipherData {
|
||||
|
@ -305,6 +310,11 @@ struct CollectionsAdminData {
|
|||
collectionIds: Vec<String>,
|
||||
}
|
||||
|
||||
#[post("/ciphers/<uuid>/collections", data = "<data>")]
|
||||
fn post_collections_update(uuid: String, data: Json<CollectionsAdminData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
||||
post_collections_admin(uuid, data, headers, conn)
|
||||
}
|
||||
|
||||
#[post("/ciphers/<uuid>/collections-admin", data = "<data>")]
|
||||
fn post_collections_admin(uuid: String, data: Json<CollectionsAdminData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
||||
let data: CollectionsAdminData = data.into_inner();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue