1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-05-18 15:00:04 +02:00

feat: Support for storing passkeys in the vault

Dieser Commit ist enthalten in:
GeekCornerGH 2023-06-19 09:21:48 +02:00
Ursprung c56bf38079
Commit 1074315a87
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 141B4CB278834F27
2 geänderte Dateien mit 8 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -210,7 +210,8 @@ pub struct CipherData {
Login = 1,
SecureNote = 2,
Card = 3,
Identity = 4
Identity = 4,
Fido2Key = 5
*/
pub Type: i32,
pub Name: String,
@ -222,6 +223,7 @@ pub struct CipherData {
SecureNote: Option<Value>,
Card: Option<Value>,
Identity: Option<Value>,
Fido2Key: Option<Value>,
Favorite: Option<bool>,
Reprompt: Option<i32>,
@ -464,6 +466,7 @@ pub async fn update_cipher_from_data(
2 => data.SecureNote,
3 => data.Card,
4 => data.Identity,
5 => data.Fido2Key,
_ => err!("Invalid type"),
};

Datei anzeigen

@ -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"),
};