mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-09-23 10:01:18 +00:00
Implement update_revision trigger
This commit is contained in:
parent
b5a057f063
commit
3f5a99916a
2 changed files with 15 additions and 1 deletions
|
@ -242,7 +242,11 @@ fn post_ciphers_import(data: JsonUpcase<ImportData>, headers: Headers, conn: DbC
|
|||
cipher.move_to_folder(folder_uuid, &headers.user.uuid.clone(), &conn).ok();
|
||||
}
|
||||
|
||||
Ok(())
|
||||
let mut user = headers.user;
|
||||
match user.update_revision(&conn) {
|
||||
Ok(()) => Ok(()),
|
||||
Err(_) => err!("Failed to update the revision, please log out and log back in to finish import.")
|
||||
}
|
||||
}
|
||||
|
||||
#[post("/ciphers/<uuid>/admin", data = "<data>")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue