mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-03-15 04:30:26 +03:00
add collections_v2 endpoint
This commit is contained in:
parent
9af6f864df
commit
a74c7bf20f
1 changed files with 29 additions and 0 deletions
|
@ -79,6 +79,8 @@ pub fn routes() -> Vec<Route> {
|
|||
delete_all,
|
||||
move_cipher_selected,
|
||||
move_cipher_selected_put,
|
||||
put_collections2_update,
|
||||
post_collections2_update,
|
||||
put_collections_update,
|
||||
post_collections_update,
|
||||
post_collections_admin,
|
||||
|
@ -695,6 +697,33 @@ struct CollectionsAdminData {
|
|||
collection_ids: Vec<String>,
|
||||
}
|
||||
|
||||
#[put("/ciphers/<uuid>/collections_v2", data = "<data>")]
|
||||
async fn put_collections2_update(
|
||||
uuid: &str,
|
||||
data: Json<CollectionsAdminData>,
|
||||
headers: Headers,
|
||||
conn: DbConn,
|
||||
nt: Notify<'_>,
|
||||
) -> JsonResult {
|
||||
post_collections2_update(uuid, data, headers, conn, nt).await
|
||||
}
|
||||
|
||||
#[post("/ciphers/<uuid>/collections_v2", data = "<data>")]
|
||||
async fn post_collections2_update(
|
||||
uuid: &str,
|
||||
data: Json<CollectionsAdminData>,
|
||||
headers: Headers,
|
||||
conn: DbConn,
|
||||
nt: Notify<'_>,
|
||||
) -> JsonResult {
|
||||
let cipher_details = post_collections_update(uuid, data, headers, conn, nt).await?;
|
||||
Ok(Json(json!({ // AttachmentUploadDataResponseModel
|
||||
"object": "optionalCipherDetails",
|
||||
"unavailable": false,
|
||||
"cipher": *cipher_details
|
||||
})))
|
||||
}
|
||||
|
||||
#[put("/ciphers/<uuid>/collections", data = "<data>")]
|
||||
async fn put_collections_update(
|
||||
uuid: &str,
|
||||
|
|
Loading…
Add table
Reference in a new issue