Skip to content

Commit

Permalink
Merge pull request #78 from kakao-tech-campus-2nd-step3/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
yooonwodyd authored Nov 3, 2024
2 parents 0092f46 + 050a107 commit 0005206
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public SecurityFilterChain oauth2SecurityFilterChain(HttpSecurity http) throws E
response.sendRedirect("/oauth2/login/kakao");
})
);

return http.build();
}

Expand All @@ -74,7 +73,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
"/v3/api-docs/**",
"/actuator/**",
"/v1/**",
"swagger-ui/**"
"swagger-ui/**",
"/test/signup"
).permitAll()
.anyRequest().authenticated()
).exceptionHandling((exception) -> exception
Expand Down

0 comments on commit 0005206

Please sign in to comment.