diff options
author | GeekCorner <[email protected]> | 2023-11-04 03:08:45 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-11-04 03:08:45 +0100 |
commit | 93da5091e6e0c40b43ad75c4c85651835b0bac44 (patch) | |
tree | e016b1476297ab0966b790f640db4e98745cc659 /src/db | |
parent | 915496c1038617d6778217c078bc6c589f694b38 (diff) | |
download | vaultwarden-93da5091e6e0c40b43ad75c4c85651835b0bac44.tar.gz vaultwarden-93da5091e6e0c40b43ad75c4c85651835b0bac44.zip |
feat: Working passkeys storage (#4025)
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/models/cipher.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/db/models/cipher.rs b/src/db/models/cipher.rs index 6bc98b90..bd3531a0 100644 --- a/src/db/models/cipher.rs +++ b/src/db/models/cipher.rs @@ -29,8 +29,7 @@ db_object! { Login = 1, SecureNote = 2, Card = 3, - Identity = 4, - Fido2key = 5 + Identity = 4 */ pub atype: i32, pub name: String, @@ -229,7 +228,6 @@ impl Cipher { "SecureNote": null, "Card": null, "Identity": null, - "Fido2Key": null, }); // These values are only needed for user/default syncs @@ -258,7 +256,6 @@ impl Cipher { 2 => "SecureNote", 3 => "Card", 4 => "Identity", - 5 => "Fido2Key", _ => panic!("Wrong type"), }; |