-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1087 from jjlin/org-creation-users
Add support for restricting org creation to certain users
- Loading branch information
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,6 +118,14 @@ | |
## even if SIGNUPS_ALLOWED is set to false | ||
# SIGNUPS_DOMAINS_WHITELIST=example.com,example.net,example.org | ||
|
||
## Controls which users can create new orgs. | ||
## Blank or 'all' means all users can create orgs (this is the default): | ||
# ORG_CREATION_USERS= | ||
## 'none' means no users can create orgs: | ||
# ORG_CREATION_USERS=none | ||
## A comma-separated list means only those users can create orgs: | ||
# [email protected],[email protected] | ||
|
||
## Token for the admin interface, preferably use a long random string | ||
## One option is to use 'openssl rand -base64 48' | ||
## If not set, the admin panel is disabled | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters