diff options
author | Stefan Melmuk <[email protected]> | 2024-01-10 19:02:36 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-10 19:02:36 +0100 |
commit | 596c16731284b46a152a655f92bddd0103c632e6 (patch) | |
tree | 10302a81b3909d3184582a12163bd3f119551f64 /src/config.rs | |
parent | ae3a153bdb062414402ec94901fabb1105838674 (diff) | |
download | vaultwarden-596c16731284b46a152a655f92bddd0103c632e6.tar.gz vaultwarden-596c16731284b46a152a655f92bddd0103c632e6.zip |
improve emergency access when not enabled (#4227)
* improve emergency access when not enabled
* display note that emergency access is disabled
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs index 116adc98..ba897edd 100644 --- a/src/config.rs +++ b/src/config.rs @@ -480,7 +480,7 @@ make_config! { /// Invitation token expiration time (in hours) |> The number of hours after which an organization invite token, emergency access invite token, /// email verification token and deletion request token will expire (must be at least 1) invitation_expiration_hours: u32, false, def, 120; - /// Allow emergency access |> Controls whether users can enable emergency access to their accounts. This setting applies globally to all users. + /// Enable emergency access |> Controls whether users can enable emergency access to their accounts. This setting applies globally to all users. emergency_access_allowed: bool, true, def, true; /// Allow email change |> Controls whether users can change their email. This setting applies globally to all users. email_change_allowed: bool, true, def, true; |