chore: make the user unable to search token by id

This commit is contained in:
JustSong
2023-06-19 10:04:38 +08:00
parent 75545a1f47
commit 5c18c559c3
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ func GetAllUserTokens(userId int, startIdx int, num int) ([]*Token, error) {
}
func SearchUserTokens(userId int, keyword string) (tokens []*Token, err error) {
err = DB.Where("user_id = ?", userId).Where("id = ? or name LIKE ?", keyword, keyword+"%").Find(&tokens).Error
err = DB.Where("user_id = ?", userId).Where("name LIKE ?", keyword+"%").Find(&tokens).Error
return tokens, err
}