Browse Source

make openid support default false for compitable with v1.1 (#1650)

master
Lunny Xiao GitHub 8 years ago
parent
commit
3ebbdfaa75
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/setting/setting.go

+ 2
- 2
modules/setting/setting.go View File

@@ -995,8 +995,8 @@ func newService() {
Service.NoReplyAddress = sec.Key("NO_REPLY_ADDRESS").MustString("noreply.example.org") Service.NoReplyAddress = sec.Key("NO_REPLY_ADDRESS").MustString("noreply.example.org")


sec = Cfg.Section("openid") sec = Cfg.Section("openid")
Service.EnableOpenIDSignIn = sec.Key("ENABLE_OPENID_SIGNIN").MustBool(true)
Service.EnableOpenIDSignUp = sec.Key("ENABLE_OPENID_SIGNUP").MustBool(!Service.DisableRegistration)
Service.EnableOpenIDSignIn = sec.Key("ENABLE_OPENID_SIGNIN").MustBool(false)
Service.EnableOpenIDSignUp = sec.Key("ENABLE_OPENID_SIGNUP").MustBool(!Service.DisableRegistration && Service.EnableOpenIDSignIn)
pats := sec.Key("WHITELISTED_URIS").Strings(" ") pats := sec.Key("WHITELISTED_URIS").Strings(" ")
if len(pats) != 0 { if len(pats) != 0 {
Service.OpenIDWhitelist = make([]*regexp.Regexp, len(pats)) Service.OpenIDWhitelist = make([]*regexp.Regexp, len(pats))


Loading…
Cancel
Save