vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit f2fec345ec0fa25a4a07d661f6760c85df6be8fa
parent f1ade6263805d1513e26e9dc1c6b6a8e56e1f909
Author: Miroslav Prasil <miroslav@prasil.info>
Date:   Wed, 15 Aug 2018 14:27:37 +0100

Add PUT alias for editing cipher

Diffstat:
Msrc/api/core/ciphers.rs | 7++++++-
Msrc/api/core/mod.rs | 1+
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs @@ -251,9 +251,14 @@ fn post_ciphers_import(data: JsonUpcase<ImportData>, headers: Headers, conn: DbC } } + +#[put("/ciphers/<uuid>/admin", data = "<data>")] +fn put_cipher_admin(uuid: String, data: JsonUpcase<CipherData>, headers: Headers, conn: DbConn) -> JsonResult { + put_cipher(uuid, data, headers, conn) +} + #[post("/ciphers/<uuid>/admin", data = "<data>")] fn post_cipher_admin(uuid: String, data: JsonUpcase<CipherData>, headers: Headers, conn: DbConn) -> JsonResult { - // TODO: Implement this correctly post_cipher(uuid, data, headers, conn) } diff --git a/src/api/core/mod.rs b/src/api/core/mod.rs @@ -32,6 +32,7 @@ pub fn routes() -> Vec<Route> { get_cipher_admin, get_cipher_details, post_ciphers, + put_cipher_admin, post_ciphers_admin, post_ciphers_import, post_attachment,