Skip to content

Commit

Permalink
:fix SecurityConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
sunwupark committed Feb 6, 2024
1 parent 7adb95a commit 85d40f8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
.requestMatchers("/api/v0/auth/withdraw").permitAll()
.requestMatchers("/api/v0/auth/reissue").permitAll()
.requestMatchers("/auth/**").permitAll()
.requestMatchers("/favicon.ico").permitAll()
);

http.addFilterBefore(jwtCustomAuthenticationFilter, UsernamePasswordAuthenticationFilter.class);
Expand Down

0 comments on commit 85d40f8

Please sign in to comment.