diff options
author | Lauris BH <lauris@nix.lv> | 2017-05-08 22:51:53 +0300 |
---|---|---|
committer | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2017-05-08 21:51:53 +0200 |
commit | 51d0becb4232eab6b18959ccc4a895e5df30c4dc (patch) | |
tree | d119ca2bef3ca44147801cd57e4cf2190690f65a /integrations | |
parent | a85c5ab9ff60dab58b2bf713479460caac8e9567 (diff) | |
download | gitea-51d0becb4232eab6b18959ccc4a895e5df30c4dc.tar.gz gitea-51d0becb4232eab6b18959ccc4a895e5df30c4dc.zip |
Add configuration option for default permission to create Organizations (#1686)
Diffstat (limited to 'integrations')
-rw-r--r-- | integrations/mysql.ini | 1 | ||||
-rw-r--r-- | integrations/pgsql.ini | 1 | ||||
-rw-r--r-- | integrations/sqlite.ini | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/integrations/mysql.ini b/integrations/mysql.ini index b15588c867..9560b4ff9f 100644 --- a/integrations/mysql.ini +++ b/integrations/mysql.ini @@ -32,6 +32,7 @@ DISABLE_REGISTRATION = false ENABLE_CAPTCHA = false REQUIRE_SIGNIN_VIEW = false DEFAULT_KEEP_EMAIL_PRIVATE = false +DEFAULT_ALLOW_CREATE_ORGANIZATION = true NO_REPLY_ADDRESS = noreply.example.org [picture] diff --git a/integrations/pgsql.ini b/integrations/pgsql.ini index 920a5190d4..a0cae0dabc 100644 --- a/integrations/pgsql.ini +++ b/integrations/pgsql.ini @@ -32,6 +32,7 @@ DISABLE_REGISTRATION = false ENABLE_CAPTCHA = false REQUIRE_SIGNIN_VIEW = false DEFAULT_KEEP_EMAIL_PRIVATE = false +DEFAULT_ALLOW_CREATE_ORGANIZATION = true NO_REPLY_ADDRESS = noreply.example.org [picture] diff --git a/integrations/sqlite.ini b/integrations/sqlite.ini index dc17b23ec8..9ced8c025b 100644 --- a/integrations/sqlite.ini +++ b/integrations/sqlite.ini @@ -32,6 +32,7 @@ DISABLE_REGISTRATION = false ENABLE_CAPTCHA = false REQUIRE_SIGNIN_VIEW = false DEFAULT_KEEP_EMAIL_PRIVATE = false +DEFAULT_ALLOW_CREATE_ORGANIZATION = true NO_REPLY_ADDRESS = noreply.example.org [picture] |