aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEphemera42 <[email protected]>2024-12-21 00:49:46 +0800
committerGitHub <[email protected]>2024-12-20 17:49:46 +0100
commited4ad67e732c213beaec78970cdb68e48bee3dc1 (patch)
tree6c0c67d86b02db8e26d6cbd7422a96c6d0b59855
parenta523c82f5f9fc444cafb11b78a16074663e76a7a (diff)
downloadvaultwarden-main.tar.gz
vaultwarden-main.zip
Add `inline-menu-positioning-improvements` feature flag (#5313)HEADmain
-rw-r--r--.env.template1
-rw-r--r--src/config.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/.env.template b/.env.template
index ff0af609..80eb4756 100644
--- a/.env.template
+++ b/.env.template
@@ -350,6 +350,7 @@
## - "browser-fileless-import": Directly import credentials from other providers without a file.
## - "extension-refresh": Temporarily enable the new extension design until general availability (should be used with the beta Chrome extension)
## - "fido2-vault-credentials": Enable the use of FIDO2 security keys as second factor.
+## - "inline-menu-positioning-improvements": Enable the use of inline menu password generator and identity suggestions in the browser extension.
## - "ssh-key-vault-item": Enable the creation and use of SSH key vault items. (Needs clients >=2024.12.0)
## - "ssh-agent": Enable SSH agent support on Desktop. (Needs desktop >=2024.12.0)
# EXPERIMENTAL_CLIENT_FEATURE_FLAGS=fido2-vault-credentials
diff --git a/src/config.rs b/src/config.rs
index 8daf35f4..ab62a020 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -829,6 +829,7 @@ fn validate_config(cfg: &ConfigItems) -> Result<(), Error> {
"browser-fileless-import",
"extension-refresh",
"fido2-vault-credentials",
+ "inline-menu-positioning-improvements",
"ssh-key-vault-item",
"ssh-agent",
];