mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-20 23:57:42 +01:00
commit
b17711abbf
@ -284,11 +284,8 @@ func IsSuperUser(username string) bool {
|
|||||||
|
|
||||||
// CleanUser - Clean this user information from DB
|
// CleanUser - Clean this user information from DB
|
||||||
func CleanUser(id int64) error {
|
func CleanUser(id int64) error {
|
||||||
if _, err := GetOrmer().QueryTable(&models.User{}).
|
_, err := GetOrmer().QueryTable(&models.User{}).Filter("UserID", id).Delete()
|
||||||
Filter("UserID", id).Delete(); err != nil {
|
|
||||||
return err
|
return err
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// MatchPassword returns true is password matched
|
// MatchPassword returns true is password matched
|
||||||
|
Loading…
Reference in New Issue
Block a user