-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
feat: support search bar on star tab of user profile. #917
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
LGTM |
return nil, 0, fmt.Errorf("Repo: %v", err) | ||
} | ||
|
||
if opts.Starred { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe you could see https://github.com/go-gitea/gitea/blob/master/models/repo.go#L2156
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
models/repo.go
Outdated
sess = x. | ||
Join("INNER", "star", "star.repo_id = repository.id"). | ||
Where("star.uid = ?", opts.OwnerID). | ||
And("LOWER(lower_name) LIKE ?", "%"+opts.Keyword+"%") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need lower here? Sounds like it should already be lower
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Waiting testing.
I have not tested it but beside the single comment LGTM |
Signed-off-by: Bo-Yi Wu <[email protected]>
let L-G-T-M work |
Update the repo format of star tab of user profile.
Origin: https://try.gitea.io/appleboy?tab=stars