-
Notifications
You must be signed in to change notification settings - Fork 0
Add search by org name to the list all registered users endpoint #348
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
base: main
Are you sure you want to change the base?
Conversation
|
You have run out of free Bugbot PR reviews for this billing cycle. This will reset on January 9. To receive reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial. |
Summary of ChangesHello @nickpismenkov, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces a significant improvement to the administrative user listing functionality by enabling filtering based on organization names. This enhancement allows administrators to more efficiently locate users associated with specific organizations. The change is implemented end-to-end, from the API query parameter definition down to the database query logic, ensuring robust and consistent behavior. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
|
@claude review |
Code Review - PR #348I've reviewed this pull request and found 2 critical issues that need to be addressed:
|
|
@claude review |
Code Review - PR #348 (Follow-up)I've reviewed this pull request and all previously identified critical issues have been resolved. However, I found one critical logic issue that needs to be addressed:
|
Support partial match Co-authored-by: Pierre LE GUEN <26087574+PierreLeGuen@users.noreply.github.com>
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.
This PR is being reviewed by Cursor Bugbot
Details
Your team is on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle for each member of your team.
To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.
|
@claude review |
Code Review - PR #348 (Final Review)Context from Previous ReviewsThis is a follow-up review. Previous feedback identified:
✅ All Critical Issues ResolvedI've reviewed the current implementation and all previously identified critical issues have been addressed. The implementation correctly:
The PR is ready to merge. ✅ |
Note
Adds organization-name filtering to the admin users list when including organizations, and plumbs it through API, services, and repositories with total counts.
GET /v1/admin/usersacceptssearch_by_name(only wheninclude_organizations=true); OpenAPI docs and debug logs updatedlist_users_with_organizationsnow takessearch_by_nameand returns(users, total); callers updated to use returned totalUserRepository::list_with_organizationsadds ILIKE-based org name filtering with escaped wildcards, adds a separate total-count query, and returns(rows, total);AdminCompositeRepositoryforwards param and totalWritten by Cursor Bugbot for commit ab74384. This will update automatically on new commits. Configure here.