-
Notifications
You must be signed in to change notification settings - Fork 526
fix(entity-feedback): Add link to feedback notifications #6611
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
Merged
kuangp
merged 10 commits into
backstage:main
from
west-david:fix/entity-feedback-notification-links
Dec 24, 2025
Merged
Changes from 4 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
fe105e7
fix(entity-feedback): Add link to feedback notifications
west-david 92b7cd7
Add changeset for notification link fix
west-david 8673378
test: Update tests to expect link field in notification payload
west-david a6d6143
feat: Make feedback notification URL configurable
west-david 8875224
refactor: Derive entity URL from frontend routing for feedback notifi…
west-david bb144b6
style: Fix prettier formatting in FeedbackResponseDialog
west-david c7a27cf
chore: Update API report for FeedbackResponse link field
west-david fd04afb
test: Update DatabaseHandler test to expect link field in responses
west-david 51b5aea
test: Add entityRouteRef to FeedbackResponseDialog test
west-david 178f1ab
test: Update FeedbackResponseDialog test to expect link field
west-david File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-entity-feedback-backend': patch | ||
| --- | ||
|
|
||
| Add clickable link to feedback notifications. When entity owners receive notifications about new feedback, the notification now includes a link to navigate directly to the entity's feedback page. |
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
We should also define and document the new config - see https://backstage.io/docs/conf/defining for more info and the playlist plugin for an example: https://github.com/backstage/community-plugins/blob/main/workspaces/playlist/plugins/playlist/config.d.ts, https://github.com/backstage/community-plugins/blob/main/workspaces/playlist/plugins/playlist/package.json#L85see comment belowThere 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.
actually another option which may be more robust is to send this info from the frontend plugin since the routing can be derived there automatically:
if you can emulate what's done here to derive the route of the entity: https://github.com/backstage/backstage/blob/fea3e3972daf42fc75c107568a693eeb14a4d672/plugins/catalog-react/src/components/EntityRefLink/EntityRefLink.tsx#L84-L88, then pass it along in the request to the backend here:
community-plugins/workspaces/entity-feedback/plugins/entity-feedback/src/components/FeedbackResponseDialog/FeedbackResponseDialog.tsx
Line 132 in 4d58c3f
The benefit of the above is that it will always consistently construct the appropriate entity url (including custom ones) without any additional configuration from the consumer