Skip to content
Snippets Groups Projects
Commit 2c42cc0b authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #511 - favicon is only available after login

parent 8da2dc4a
No related branches found
No related tags found
No related merge requests found
Pipeline #3381 passed
...@@ -43,7 +43,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter ...@@ -43,7 +43,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter
.and() .and()
.authorizeRequests() .authorizeRequests()
.antMatchers("/css/**", "/js/**", "/images/**", "/webjars/**").permitAll() .antMatchers("/css/**", "/js/**", "/images/**", "/webjars/**", "/favicon.ico").permitAll()
.antMatchers("/**").authenticated() .antMatchers("/**").authenticated()
.antMatchers("/login").permitAll() .antMatchers("/login").permitAll()
.and() .and()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment