Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add variable to disable user/team creation #723

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions values/webapp/prod-values.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ envVars:
APP_NAME: "Webapp"
ENFORCE_HTTPS: "true"
FEATURE_CHECK_CONSENT: "false"
# Note: disabling showing the user creation is not the same thing as user creation being disabled.
# To disable user/team creation completely from backend, update the brig configuration in wire-server
FEATURE_ENABLE_ACCOUNT_REGISTRATION: "true"
FEATURE_ENABLE_DEBUG: "false"
FEATURE_ENABLE_PHONE_LOGIN: "false"
Expand Down
3 changes: 3 additions & 0 deletions values/wire-server/prod-values.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ brig:
# Sync the domain with the 'host' variable in the sftd chart
# Comment the next line (by adding '#' before it) if conference calling is not used
setSftStaticUrl: "https://sftd.example.com:443"
# If set to true, creating new personal users or new teams on your instance from
# outside your backend installation is disabled
setRestrictUserCreation: false
# Uncomment and replace values below for adding federated backends
# setFederationStrategy: allowDynamic
# setFederationDomainConfigs:
Expand Down
Loading