File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
src/main/java/com/dongdong/nameSolver
domain/auth/application/dto/request Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,4 @@ public class SignUpCommand {
1111 private String solvedacName ;
1212 private String id ;
1313 private String password ;
14-
15-
1614}
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
3737 })
3838 .authorizeHttpRequests ((authorizeRequest ) -> {
3939 // 회원가입, 로그인 관련 API는 Jwt 인증 없이 접근 가능
40- authorizeRequest .requestMatchers ("/auth" ).permitAll ();
40+ authorizeRequest .requestMatchers ("/auth/** " ).permitAll ();
4141 authorizeRequest .requestMatchers ("/error" ).permitAll ();
4242 // 나머지 모든 API는 Jwt 인증 필요
4343 authorizeRequest .anyRequest ().authenticated ();
You can’t perform that action at this time.
0 commit comments