fix(api): fetch plugin metadata via permission-scoped processing endpoint#102
Merged
Conversation
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Add
GET /api/v1/processings/:id/plugin, which returns a processing's plugin registry metadata. The endpoint checks the caller's permission on the processing (admin/exec/read), then fetches the artefact from the private registry as the processing owner — so a user holding only an individual permission inherits the owner's plugin access without needing their own registry grant. The UI now reads plugin metadata (cards + detail page) through this endpoint instead of calling/registrydirectly.Why: a user can be granted an individual
read/execpermission on a processing they don't own; requiring their own registry grant to view the plugin broke that case. Permission on the processing should transitively cover its plugin metadata.Regression risks:
usePluginFetchnow takes aprocessingIdinstead of apluginIdand its module-level fetch cache is re-keyed accordingly; the only caller (processing-card.vue) is updated./registrycall. The creation/picker flows (new.vue,processings-actions.vue) intentionally keep the direct/registrylist call.