mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
Fix OAuth Source Edit Page (#18495)
* Fix OAuth Source Edit Page to ensure restricted and group settings are set * Also tolerate []interface in the groups Fix #18432 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
db7c3ecc1f
commit
7d452558f0
@ -192,6 +192,9 @@ func parseOAuth2Config(form forms.AuthenticationForm) *oauth2.Source {
|
|||||||
RequiredClaimName: form.Oauth2RequiredClaimName,
|
RequiredClaimName: form.Oauth2RequiredClaimName,
|
||||||
RequiredClaimValue: form.Oauth2RequiredClaimValue,
|
RequiredClaimValue: form.Oauth2RequiredClaimValue,
|
||||||
SkipLocalTwoFA: form.SkipLocalTwoFA,
|
SkipLocalTwoFA: form.SkipLocalTwoFA,
|
||||||
|
GroupClaimName: form.Oauth2GroupClaimName,
|
||||||
|
RestrictedGroup: form.Oauth2RestrictedGroup,
|
||||||
|
AdminGroup: form.Oauth2AdminGroup,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -900,6 +900,10 @@ func claimValueToStringSlice(claimValue interface{}) []string {
|
|||||||
switch rawGroup := claimValue.(type) {
|
switch rawGroup := claimValue.(type) {
|
||||||
case []string:
|
case []string:
|
||||||
groups = rawGroup
|
groups = rawGroup
|
||||||
|
case []interface{}:
|
||||||
|
for _, group := range rawGroup {
|
||||||
|
groups = append(groups, fmt.Sprintf("%s", group))
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
str := fmt.Sprintf("%s", rawGroup)
|
str := fmt.Sprintf("%s", rawGroup)
|
||||||
groups = strings.Split(str, ",")
|
groups = strings.Split(str, ",")
|
||||||
|
Loading…
Reference in New Issue
Block a user