[Duplicate] Feature/project management endpoints 63#125
Closed
LinseCed wants to merge 2 commits into
Closed
Conversation
Feature/artifact upload
…ement-endpoints-63 Feature/project management endpoints 63
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.
Important
Duplicate of #112
Related issue
Closes #63
Short summary
Implements paginated and filterable artifact retrieval through separate administrative and project-scoped endpoints.
The original global artifact endpoint was split to keep system-wide administrative access separate from regular project-level access:
GET /api/v1/admin/artifactsfor administrators to retrieve artifacts across all projects.GET /api/v1/projects/{projectId}/artifactsfor users to retrieve artifacts belonging to a project they can access.Checks
./gradlew clean build, Keycloak)WebMvcTestfor API controllersNote: this branch (
feature/project-management-endpoints-63-dev-backup) stacks on top of #124 (the dev-backup duplicate of #110, which this PR's original branch also depended on), since #112 built directly on #110's branch and haddevmerged into it multiple times to resolve real conflicts. This is a clean cherry-pick of just #112's own net diff on top of #124's branch. Until #124 merges intodev-backup, this diff will show both PRs' combined changes; it will shrink to just #112's own changes once #124 lands, mirroring how the original PRs looked before #110 merged intodev.