Skip to content

Commit

Permalink
[CHORE] #11 fix white list
Browse files Browse the repository at this point in the history
  • Loading branch information
nykoh2001 committed May 31, 2024
1 parent d015498 commit 1f03baa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class SecurityConfig {
private final CustomJwtAuthenticationEntryPoint customJwtAuthenticationEntryPoint;
private final CustomAccessDeniedHandler customAccessDeniedHandler;

private static final String[] AUTH_WHITE_LIST = {"/api/v1/member"};
private static final String[] AUTH_WHITE_LIST = {"/api/v1/auth/**"};

@Bean
SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
Expand Down

0 comments on commit 1f03baa

Please sign in to comment.