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 036084a commit e44fd1aCopy full SHA for e44fd1a
security-config/src/main/java/com/octoperf/security/config/SecurityConfig.java
@@ -30,7 +30,8 @@
30
@FieldDefaults(level = PRIVATE, makeFinal = true)
31
class SecurityConfig extends WebSecurityConfigurerAdapter {
32
private static final RequestMatcher PUBLIC_URLS = new OrRequestMatcher(
33
- new AntPathRequestMatcher("/public/**")
+ new AntPathRequestMatcher("/public/**"),
34
+ new AntPathRequestMatcher("/error/**")
35
);
36
private static final RequestMatcher PROTECTED_URLS = new NegatedRequestMatcher(PUBLIC_URLS);
37
0 commit comments