mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-10-30 21:31:13 +00:00 
			
		
		
		
	Add PUT alias for editing cipher
This commit is contained in:
		
					parent
					
						
							
								f1ade62638
							
						
					
				
			
			
				commit
				
					
						f2fec345ec
					
				
			
		
					 2 changed files with 7 additions and 1 deletions
				
			
		|  | @ -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) | ||||
| } | ||||
| 
 | ||||
|  |  | |||
|  | @ -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, | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue