JAVA-20481 (#13901)

Co-authored-by: jogra <joseph.sterling.grah@miles.no>
This commit is contained in:
jsgrah-spring 2023-04-25 15:25:05 +02:00 committed by GitHub
parent 321e1d3fcc
commit eca8ddf2f5
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public class SecurityConfig {
.antMatchers("/user/**")
.hasAnyRole("USER", "ADMIN")
.antMatchers("/login/**")
.anonymous()
.permitAll()
.anyRequest()
.authenticated()
.and()