social login 처리

dev
minuk926 3 years ago
parent 6b3efde8bc
commit d2b39b5a9c

@ -192,7 +192,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
"/**/*.html", "/**/*.html",
"/**/*.css", "/**/*.css",
"/**/*.js").permitAll() "/**/*.js").permitAll()
.antMatchers("/auth/**", "/oauth2/**", "/**/users/**").permitAll() .antMatchers("/**/auth/**", "/**/oauth2/**", "/**/users/**").permitAll()
.anyRequest().authenticated() .anyRequest().authenticated()
.and() .and()
//.anyRequest().permitAll() //.hasRole(RoleType.USER.getCode()) //.anyRequest().permitAll() //.hasRole(RoleType.USER.getCode())

Loading…
Cancel
Save