aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro Santilli <strk@kbt.io>2017-11-29 13:47:42 +0100
committerLauris BH <lauris@nix.lv>2017-11-29 14:47:42 +0200
commit67b0d2175dd64d436ffcd95ba58677e43d206770 (patch)
tree4a6194d8f18df9dea61afc158c57eb4492b9dcca
parentb9452c48aca6831bebbf471d840ab3e6924c4767 (diff)
downloadgitea-67b0d2175dd64d436ffcd95ba58677e43d206770.tar.gz
gitea-67b0d2175dd64d436ffcd95ba58677e43d206770.zip
Set OpenID support on by default when installing new instance (#3010)
-rw-r--r--modules/setting/setting.go2
-rw-r--r--routers/install.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/setting/setting.go b/modules/setting/setting.go
index d4f92dee39..9bb7da4456 100644
--- a/modules/setting/setting.go
+++ b/modules/setting/setting.go
@@ -1165,7 +1165,7 @@ func newService() {
Service.NoReplyAddress = sec.Key("NO_REPLY_ADDRESS").MustString("noreply.example.org")
sec = Cfg.Section("openid")
- Service.EnableOpenIDSignIn = sec.Key("ENABLE_OPENID_SIGNIN").MustBool(false)
+ Service.EnableOpenIDSignIn = sec.Key("ENABLE_OPENID_SIGNIN").MustBool(!InstallLock)
Service.EnableOpenIDSignUp = sec.Key("ENABLE_OPENID_SIGNUP").MustBool(!Service.DisableRegistration && Service.EnableOpenIDSignIn)
pats := sec.Key("WHITELISTED_URIS").Strings(" ")
if len(pats) != 0 {
diff --git a/routers/install.go b/routers/install.go
index 427bb960f2..e832f98739 100644
--- a/routers/install.go
+++ b/routers/install.go
@@ -108,8 +108,8 @@ func Install(ctx *context.Context) {
form.OfflineMode = setting.OfflineMode
form.DisableGravatar = setting.DisableGravatar
form.EnableFederatedAvatar = setting.EnableFederatedAvatar
- form.EnableOpenIDSignIn = true
- form.EnableOpenIDSignUp = true
+ form.EnableOpenIDSignIn = setting.Service.EnableOpenIDSignIn
+ form.EnableOpenIDSignUp = setting.Service.EnableOpenIDSignUp
form.DisableRegistration = setting.Service.DisableRegistration
form.EnableCaptcha = setting.Service.EnableCaptcha
form.RequireSignInView = setting.Service.RequireSignInView