summaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
authorMathijs van Veluw <[email protected]>2024-08-30 21:37:59 +0200
committerGitHub <[email protected]>2024-08-30 21:37:59 +0200
commit544b7229e8cc49436d3872ba2022e09231552fa7 (patch)
treec322a0e2e9147f02185eafb2ecac6d37bedaa694 /src/config.rs
parent978f0092937c3a62f2de4ddc487137429754d3c0 (diff)
downloadvaultwarden-544b7229e8cc49436d3872ba2022e09231552fa7.tar.gz
vaultwarden-544b7229e8cc49436d3872ba2022e09231552fa7.zip
Allow enforcing Single Org with pw reset policy (#4903)
* Allow enforcing Single Org with pw reset policy Bitwarden only allows the Reset Password policy to be set when the Single Org policy is enabled already. This PR adds a check so that this can be enforced when a config option is enabled. Since Vaultwarden encouraged to use multiple orgs when groups were not available yet we should not enable this by default now. This might be something to do in the future. When enabled, it will prevent the Reset Password policy to be enabled if the Single Org policy is not enabled. It will also prevent the Single Org policy to be disabled if the Reset Password policy is enabled. Fixes #4855 Signed-off-by: BlackDex <[email protected]> * Removed some extra if checks Signed-off-by: BlackDex <[email protected]> --------- Signed-off-by: BlackDex <[email protected]>
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index 93944131..f5466e86 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -625,6 +625,11 @@ make_config! {
increase_note_size_limit: bool, true, def, false;
/// Generated max_note_size value to prevent if..else matching during every check
_max_note_size: usize, false, gen, |c| if c.increase_note_size_limit {100_000} else {10_000};
+
+ /// Enforce Single Org with Reset Password Policy |> Enforce that the Single Org policy is enabled before setting the Reset Password policy
+ /// Bitwarden enforces this by default. In Vaultwarden we encouraged to use multiple organizations because groups were not available.
+ /// Setting this to true will enforce the Single Org Policy to be enabled before you can enable the Reset Password policy.
+ enforce_single_org_with_reset_pw_policy: bool, false, def, false;
},
/// Yubikey settings