1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-06-30 19:24:42 +02:00

Implemented public key method correctly, which fixes decryption errors in collections and organizations

Dieser Commit ist enthalten in:
Daniel García 2018-05-04 22:54:23 +02:00
Ursprung 79b4ddcae8
Commit 7e7c3681da

Datei anzeigen

@ -71,7 +71,11 @@ fn get_public_keys(uuid: String, headers: Headers, conn: DbConn) -> JsonResult {
None => err!("User doesn't exist")
};
Ok(Json(json!(user.public_key)))
Ok(Json(json!({
"UserId": user.uuid,
"PublicKey": user.public_key,
"Object":"userKey"
})))
}
#[post("/accounts/keys", data = "<data>")]