We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fd6de5 commit c02aab6Copy full SHA for c02aab6
src/main/java/ru/mystamps/web/support/spring/security/SecurityConfig.java
@@ -86,7 +86,7 @@ protected void configure(HttpSecurity http) throws Exception {
86
.mvcMatchers(Url.SUGGEST_SERIES_COUNTRY).hasAuthority(StringAuthority.CREATE_SERIES)
87
.mvcMatchers(Url.DAILY_STATISTICS).hasAuthority(StringAuthority.VIEW_DAILY_STATS)
88
// @todo #884 /collection/{slug}/estimation: only owner should have access to estimation page
89
- .mvcMatchers(Url.ESTIMATION_COLLECTION_PAGE).hasAnyAuthority(StringAuthority.ADD_SERIES_PRICE)
+ .mvcMatchers(Url.ESTIMATION_COLLECTION_PAGE).hasAuthority(StringAuthority.ADD_SERIES_PRICE)
90
.regexMatchers(HttpMethod.POST, "/series/[0-9]+")
91
.hasAnyAuthority(
92
StringAuthority.UPDATE_COLLECTION,
0 commit comments