Skip to content

Commit

Permalink
Merge pull request #206 from SPACE-FOR-SPACE/fix/#205
Browse files Browse the repository at this point in the history
회원가입 에러 해결
  • Loading branch information
YunChan-Oh authored Nov 29, 2024
2 parents b217ede + 5ab5645 commit e3f37b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class SecurityConfig {
private final CustomOAuth2UserService customOAuth2UserService;
private final CustomSuccessHandler customSuccessHandler;

private final List<String> excludedPaths = Arrays.asList("/swagger-ui/**", "/v3/api-docs/**", "/reissue", "/hc", "/env", "/mails", "/verify", "/favicon.ico", "/logout");
private final List<String> excludedPaths = Arrays.asList("/swagger-ui/**", "/v3/api-docs/**", "/reissue", "/hc", "/env", "/mails", "/verify", "/favicon.ico", "/logout", "/join");

@Bean
public AuthenticationManager authenticationManager(AuthenticationConfiguration configuration) throws Exception {
Expand Down

0 comments on commit e3f37b3

Please sign in to comment.