Allow default org role to be Read Only Editor

This commit is contained in:
Brandon Turner 2015-08-05 23:04:47 -05:00
parent 41e13fab55
commit 1e2e65b40d
No known key found for this signature in database
GPG Key ID: 0F82931CA3EE1B07

View File

@ -391,7 +391,7 @@ func NewConfigContext(args *CommandLineArgs) {
AllowUserSignUp = users.Key("allow_sign_up").MustBool(true)
AllowUserOrgCreate = users.Key("allow_org_create").MustBool(true)
AutoAssignOrg = users.Key("auto_assign_org").MustBool(true)
AutoAssignOrgRole = users.Key("auto_assign_org_role").In("Editor", []string{"Editor", "Admin", "Viewer"})
AutoAssignOrgRole = users.Key("auto_assign_org_role").In("Editor", []string{"Editor", "Admin", "Read Only Editor", "Viewer"})
// anonymous access
AnonymousEnabled = Cfg.Section("auth.anonymous").Key("enabled").MustBool(false)