remove useless code

Signed-off-by: hao.cheng <hao.cheng@daocloud.io>
This commit is contained in:
hao.cheng 2019-10-25 15:19:10 +08:00
parent 3810dcef0f
commit 94bc8c2f5c

View File

@ -284,11 +284,8 @@ func IsSuperUser(username string) bool {
// CleanUser - Clean this user information from DB
func CleanUser(id int64) error {
if _, err := GetOrmer().QueryTable(&models.User{}).
Filter("UserID", id).Delete(); err != nil {
return err
}
return nil
_, err := GetOrmer().QueryTable(&models.User{}).Filter("UserID", id).Delete()
return err
}
// MatchPassword returns true is password matched