mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-04 05:10:19 +08:00
Fix groups in GetUserInfo()
This commit is contained in:
@ -745,7 +745,7 @@ func GetUserInfo(user *User, scope string, aud string, host string) *Userinfo {
|
|||||||
resp.Name = user.Name
|
resp.Name = user.Name
|
||||||
resp.DisplayName = user.DisplayName
|
resp.DisplayName = user.DisplayName
|
||||||
resp.Avatar = user.Avatar
|
resp.Avatar = user.Avatar
|
||||||
resp.Groups = []string{user.Owner}
|
resp.Groups = user.Groups
|
||||||
}
|
}
|
||||||
if strings.Contains(scope, "email") {
|
if strings.Contains(scope, "email") {
|
||||||
resp.Email = user.Email
|
resp.Email = user.Email
|
||||||
|
Reference in New Issue
Block a user