Skip to content

Commit a0f48b6

Browse files
authored
Update SecurityConfig.java
1 parent 040c404 commit a0f48b6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/example/FixLog/config/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
3232
.authorizeHttpRequests(auth -> auth
3333
.requestMatchers(HttpMethod.GET, "/auth/**").permitAll()
3434
.requestMatchers(HttpMethod.POST, "/auth/**").permitAll()
35+
.requestMatchers(HttpMethod.POST, "/members/signup").permitAll()
3536
.requestMatchers(HttpMethod.GET, "/members/check-email").permitAll()
3637
.requestMatchers(HttpMethod.GET, "/members/check-nickname").permitAll()
3738
.requestMatchers(HttpMethod.GET, "/h2-console/**").permitAll()

0 commit comments

Comments
 (0)