Implemented PUT for single cipher sharing (#97)

This commit is contained in:
Kumar Ankur 2018-08-02 00:07:14 +05:30
parent d6fadb52ff
commit 74e2ca81ae
2 changed files with 6 additions and 0 deletions

View File

@ -365,6 +365,11 @@ fn post_cipher_share(uuid: String, data: JsonUpcase<ShareCipherData>, headers: H
}
}
#[put("/ciphers/<uuid>/share", data = "<data>")]
fn put_cipher_share(uuid: String, data: JsonUpcase<ShareCipherData>, headers: Headers, conn: DbConn) -> JsonResult {
post_cipher_share(uuid, data, headers, conn)
}
#[post("/ciphers/<uuid>/attachment", format = "multipart/form-data", data = "<data>")]
fn post_attachment(uuid: String, data: Data, content_type: &ContentType, headers: Headers, conn: DbConn) -> JsonResult {
let cipher = match Cipher::find_by_uuid(&uuid, &conn) {

View File

@ -41,6 +41,7 @@ pub fn routes() -> Vec<Route> {
delete_attachment,
post_cipher_admin,
post_cipher_share,
put_cipher_share,
post_cipher,
put_cipher,
delete_cipher_post,