Browse Source

Adding other methods to public access

main
GabrielTrettel 3 years ago
parent
commit
db5df68fe5
  1. 2
      src/main/java/org/waterproofingdata/wpdauth/security/WebSecurityConfig.java

2
src/main/java/org/waterproofingdata/wpdauth/security/WebSecurityConfig.java

@ -37,6 +37,8 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/users/signup").permitAll()//
.antMatchers("/users/existsByUsername").permitAll()//
.antMatchers("/users/existsByNickname").permitAll()//
.antMatchers("/forgotpasswords/findallforgotpasswordquestions").permitAll()//
.antMatchers("/forgotpasswords/loginbyusernameandanswers").permitAll()//
.antMatchers("/h2-console/**/**").permitAll()
// Disallow everything else..
.anyRequest().authenticated();

Loading…
Cancel
Save