diff options
author | Richard Nienaber <rjnienaber@gmail.com> | 2021-07-15 20:19:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-15 15:19:48 -0400 |
commit | 908136c5575f1facf030b1a4084744f6cd31a9f9 (patch) | |
tree | 0ae5701165e319855e58de6066d6539b20bfdfcd /modules/setting | |
parent | 251d7f524aa53ec1082cacbf8beb4b83446eb7b5 (diff) | |
download | gitea-908136c5575f1facf030b1a4084744f6cd31a9f9.tar.gz gitea-908136c5575f1facf030b1a4084744f6cd31a9f9.zip |
add configuration option to restrict users by default (#16256)
* add configuration option to restrict users by default
* default IsRestricted permission only set on sign up
setting this in the model messes with other workflows (e.g. syncing LDAP users) where the IsRestricted permission needs to be explicitly set and not overridden by a config value
* fix formatting
* Apply suggestions from code review
* ensure newly created user is set to restricted
* ensure imports are in the correct order
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'modules/setting')
-rw-r--r-- | modules/setting/service.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/setting/service.go b/modules/setting/service.go index dbabfb8400..a391926382 100644 --- a/modules/setting/service.go +++ b/modules/setting/service.go @@ -49,6 +49,7 @@ var Service = struct { HcaptchaSitekey string DefaultKeepEmailPrivate bool DefaultAllowCreateOrganization bool + DefaultUserIsRestricted bool EnableTimetracking bool DefaultEnableTimetracking bool DefaultEnableDependencies bool @@ -134,6 +135,7 @@ func newService() { Service.HcaptchaSitekey = sec.Key("HCAPTCHA_SITEKEY").MustString("") Service.DefaultKeepEmailPrivate = sec.Key("DEFAULT_KEEP_EMAIL_PRIVATE").MustBool() Service.DefaultAllowCreateOrganization = sec.Key("DEFAULT_ALLOW_CREATE_ORGANIZATION").MustBool(true) + Service.DefaultUserIsRestricted = sec.Key("DEFAULT_USER_IS_RESTRICTED").MustBool(false) Service.EnableTimetracking = sec.Key("ENABLE_TIMETRACKING").MustBool(true) if Service.EnableTimetracking { Service.DefaultEnableTimetracking = sec.Key("DEFAULT_ENABLE_TIMETRACKING").MustBool(true) |