1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-18 09:20:08 +00:00

feat: Support for storing passkeys in the vault

This commit is contained in:
GeekCornerGH 2023-06-19 09:21:48 +02:00
parent c56bf38079
commit 1074315a87
No known key found for this signature in database
GPG key ID: 141B4CB278834F27
2 changed files with 8 additions and 2 deletions

View file

@ -27,7 +27,8 @@ db_object! {
Login = 1,
SecureNote = 2,
Card = 3,
Identity = 4
Identity = 4,
Fido2key = 5
*/
pub atype: i32,
pub name: String,
@ -223,6 +224,7 @@ impl Cipher {
"SecureNote": null,
"Card": null,
"Identity": null,
"Fido2Key": null,
});
// These values are only needed for user/default syncs
@ -251,6 +253,7 @@ impl Cipher {
2 => "SecureNote",
3 => "Card",
4 => "Identity",
5 => "Fido2Key",
_ => panic!("Wrong type"),
};