HMS-11149: Fix rpm list support for partner repos - #1714
Open
johnelliott626 wants to merge 1 commit into
Open
johnelliott626 wants to merge 1 commit into
johnelliott626 wants to merge 1 commit into
Conversation
Contributor
johnelliott626
marked this pull request as ready for review
September 8, 2026 20:47
Contributor
Author
|
/retest |
Contributor
|
All PipelineRuns for this commit have already succeeded. Use |
Contributor
|
I don't think I've ever seen snyk find a real issue |
Member
|
/retest-playwright |
johnelliott626
force-pushed
the
fix/HMS-11149-list-repo-rpms
branch
from
September 11, 2026 21:16
ee9929e to
d3bac94
Compare
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
Currently the endpoint for listing RPMs
/repositories/{uuid}/rpmsis broken for foreign-org viewers of partner repos. This PR fixes the endpoint for that use case with a couple clear distinctions when a foreign-org viewer (of a partner repo) accesses the endpoint vs. a repo owner:The endpoint behavior for a repo owner accessing the endpoint is unchanged.
Testing steps
Part 1: Set up a partner repo
UPDATE repository_configurations SET partner = true WHERE uuid = '<uuid>';(must be an upload repo owned by an org your local environment has access to)UPDATE snapshots SET published = true WHERE uuid = '<snap_uuid>';UPDATE repositories SET public = true WHERE uuid = (SELECT repository_uuid FROM repository_configurations WHERE uuid = '<repo_config_uuid>');Part 2: Call the endpoint
GIF describing this PR 😆