mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-22 18:25:47 +08:00
feat: use random name as name if user's name is invalid when created by third party provider (#3742)
This commit is contained in:
parent
e2eafa909b
commit
7d1c614452
@ -837,6 +837,10 @@ func AddUser(user *User) (bool, error) {
|
|||||||
return false, fmt.Errorf("the user's owner and name should not be empty")
|
return false, fmt.Errorf("the user's owner and name should not be empty")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if CheckUsername(user.Name, "en") != "" {
|
||||||
|
user.Name = util.GetRandomName()
|
||||||
|
}
|
||||||
|
|
||||||
organization, err := GetOrganizationByUser(user)
|
organization, err := GetOrganizationByUser(user)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false, err
|
return false, err
|
||||||
|
Loading…
x
Reference in New Issue
Block a user