Skip to content

Commit

Permalink
Allow access to the History and Changes tabs on vuln view (#2737)
Browse files Browse the repository at this point in the history
Allow access to the History and Changes tabs on vuln view 
### What's done:
* Allow access to the History and Changes tabs on vuln view
  • Loading branch information
kgevorkyan authored Oct 17, 2023
1 parent b7ff413 commit bffedd8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,10 @@ class WebSecurityConfig(
// `ProjectView`'s getProject should be public, all the permission filtering is done on backend
"/api/$v1/projects/get/organization-name",
// info on tags should be public
"/api/$v1/tags/**"
"/api/$v1/tags/**",
// cosv history and changes tabs should be public
"/api/$v1/cosv/list-versions",
"/api/$v1/cosv/cosv-content",
)
}
}
Expand Down

0 comments on commit bffedd8

Please sign in to comment.