summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeekCorner <[email protected]>2023-11-04 03:08:45 +0100
committerGitHub <[email protected]>2023-11-04 03:08:45 +0100
commit93da5091e6e0c40b43ad75c4c85651835b0bac44 (patch)
treee016b1476297ab0966b790f640db4e98745cc659
parent915496c1038617d6778217c078bc6c589f694b38 (diff)
downloadvaultwarden-93da5091e6e0c40b43ad75c4c85651835b0bac44.tar.gz
vaultwarden-93da5091e6e0c40b43ad75c4c85651835b0bac44.zip
feat: Working passkeys storage (#4025)
-rw-r--r--src/api/core/ciphers.rs5
-rw-r--r--src/api/core/mod.rs3
-rw-r--r--src/db/models/cipher.rs5
3 files changed, 4 insertions, 9 deletions
diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs
index b9f3ef63..733ae7b9 100644
--- a/src/api/core/ciphers.rs
+++ b/src/api/core/ciphers.rs
@@ -212,8 +212,7 @@ pub struct CipherData {
Login = 1,
SecureNote = 2,
Card = 3,
- Identity = 4,
- Fido2Key = 5
+ Identity = 4
*/
pub Type: i32,
pub Name: String,
@@ -225,7 +224,6 @@ pub struct CipherData {
SecureNote: Option<Value>,
Card: Option<Value>,
Identity: Option<Value>,
- Fido2Key: Option<Value>,
Favorite: Option<bool>,
Reprompt: Option<i32>,
@@ -468,7 +466,6 @@ pub async fn update_cipher_from_data(
2 => data.SecureNote,
3 => data.Card,
4 => data.Identity,
- 5 => data.Fido2Key,
_ => err!("Invalid type"),
};
diff --git a/src/api/core/mod.rs b/src/api/core/mod.rs
index 62a60197..7df0171b 100644
--- a/src/api/core/mod.rs
+++ b/src/api/core/mod.rs
@@ -216,7 +216,8 @@ fn config() -> Json<Value> {
// Any feature flags that we want the clients to use
// Can check the enabled ones at:
// https://vault.bitwarden.com/api/config
- "autofill-v2": true
+ "autofill-v2": true,
+ "fido2-vault-credentials": true
},
"object": "config",
}))
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"),
};