diff options
author | BlackDex <[email protected]> | 2022-12-15 17:15:48 +0100 |
---|---|---|
committer | BlackDex <[email protected]> | 2022-12-16 14:52:42 +0100 |
commit | 8b6dfe48b70909caea0c8a4bf51bc89a451b766a (patch) | |
tree | 1ab824f62f443b864f30b0aca4332cb8ac0d5ece /.env.template | |
parent | d0b53a6a3de61d3352afb8fb11c97e29cefa454a (diff) | |
download | vaultwarden-8b6dfe48b70909caea0c8a4bf51bc89a451b766a.tar.gz vaultwarden-8b6dfe48b70909caea0c8a4bf51bc89a451b766a.zip |
Disable groups by default and Some optimizations
- Put groups support behind a feature flag, and disabled by default.
The reason is that it has some known issues, but we want to keep
optimizing this feature. Putting it behind a feature flag could help
some users, and the developers into optimizing this feature without to
much trouble.
Further:
- Updates Rust to v1.66.0
- Updated GHA workflows
- Updated Alpine to 3.17
- Updated jquery to v3.6.2
- Moved jdenticon.js to load at the bottom, fixes an issue on chromium
- Added autocomplete attribute to admin login password field
- Added some extra CSP options (Tested this on Safari, Firefox, Chrome, Bitwarden Desktop)
- Moved uppercase convertion from runtime to compile-time using `paste`
for building the environment variables, lowers heap allocations.
Diffstat (limited to '.env.template')
-rw-r--r-- | .env.template | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.env.template b/.env.template index 7ccdacd3..4b323706 100644 --- a/.env.template +++ b/.env.template @@ -90,6 +90,13 @@ ## If unset (the default), events are kept indefinitely and the scheduled job is disabled! # EVENTS_DAYS_RETAIN= +## BETA FEATURE: Groups +## Controls whether group support is enabled for organizations +## This setting applies to organizations. +## Disabled by default because this is a beta feature, it contains known issues! +## KNOW WHAT YOU ARE DOING! +# ORG_GROUPS_ENABLED=false + ## Job scheduler settings ## ## Job schedules use a cron-like syntax (as parsed by https://crates.io/crates/cron), |