fix: use GitHub search API for repo search in modal#657
Open
czhu12 wants to merge 5 commits into
Open
Conversation
added 5 commits
July 6, 2026 16:07
Instead of fetching all repos with auto_paginate and filtering in Ruby, use GitHub's search_repos API for server-side filtering. Much faster for users with many repos or org memberships.
Both repository controllers shared identical index logic. Extract into a shared concern with provider-specific hooks for client building, search, and listing.
…sages Show instructions for both classic and fine-grained PATs on the GitLab provider form. Detect fine-grained tokens that are missing permissions and show which specific permissions are needed.
Use DaisyUI tabs to switch between classic and fine-grained token instructions instead of stacking them. Use smaller, subtler code badges that don't overflow.
Replace DaisyUI radio tabs with the app's existing tabs Stimulus controller pattern for consistency.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
search_reposAPIauto_paginate = true) then filtered in Ruby — slow for users with many repos/orgsGET /search/repositorieswithin:name fork:truefor fast server-side searchTest plan
🤖 Generated with Claude Code