mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-24 17:47:46 +01:00
remove useless code
Signed-off-by: hao.cheng <hao.cheng@daocloud.io>
This commit is contained in:
parent
3810dcef0f
commit
94bc8c2f5c
@ -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