Skip to content
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

Port : Fix project link for new vulnerable dependency for email #1440

Merged
merged 2 commits into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ public void testInformWithNewVulnerableDependencyNotification() throws Exception
--------------------------------------------------------------------------------

Project: pkg:maven/org.acme/projectName@projectVersion
Project URL: https://example.com/projects/?uuid=c9c9539a-e381-4b36-ac52-6a7ab83b2c95
Project URL: https://example.com/projects/c9c9539a-e381-4b36-ac52-6a7ab83b2c95
Component: componentName : componentVersion
Component URL: https://example.com/component/?uuid=94f87321-a5d1-4c2f-b2fe-95165debebc6

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Project URL: {{ baseUrl }}/projects/{{ subject.project.uuid }}
Other affected projects: {{ baseUrl }}{{ subject.affectedProjectsReference.frontendUri }}
{% elseif notification.group == "GROUP_NEW_VULNERABLE_DEPENDENCY" %}
Project: {{ subject.project | summarize }}
Project URL: {{ baseUrl }}/projects/?uuid={{ subject.project.uuid }}
Project URL: {{ baseUrl }}/projects/{{ subject.project.uuid }}
Component: {{ subject.component | summarize }}
Component URL: {{ baseUrl }}/component/?uuid={{ subject.component.uuid }}

Expand Down
Loading