Daniel García
6 years ago
No known key found for this signature in database
GPG Key ID: FC8A7D14C3CD543A
2 changed files with
5 additions and
0 deletions
-
src/api/core/ciphers.rs
-
src/api/core/mod.rs
|
|
@ -143,7 +143,11 @@ fn post_ciphers_admin(data: JsonUpcase<ShareCipherData>, headers: Headers, conn: |
|
|
|
}; |
|
|
|
|
|
|
|
share_cipher_by_uuid(&cipher.uuid, data, &headers, &conn, &ws) |
|
|
|
} |
|
|
|
|
|
|
|
#[post("/ciphers/create", data = "<data>")] |
|
|
|
fn post_ciphers_create(data: JsonUpcase<ShareCipherData>, headers: Headers, conn: DbConn, ws: State<WebSocketUsers>) -> JsonResult { |
|
|
|
post_ciphers_admin(data, headers, conn, ws) |
|
|
|
} |
|
|
|
|
|
|
|
#[post("/ciphers", data = "<data>")] |
|
|
|
|
|
@ -39,6 +39,7 @@ pub fn routes() -> Vec<Route> { |
|
|
|
post_ciphers, |
|
|
|
put_cipher_admin, |
|
|
|
post_ciphers_admin, |
|
|
|
post_ciphers_create, |
|
|
|
post_ciphers_import, |
|
|
|
post_attachment, |
|
|
|
post_attachment_admin, |
|
|
|