Skip to content

Commit

Permalink
[LH-199] Fix filter api patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
YoungJun-L committed Nov 21, 2023
1 parent 1f58d8c commit 997e345
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public class BearerTokenAuthenticationFilter extends OncePerRequestFilter {

private final List<String> excludedPatterns = List.of(
"/api/v1/auth/**",
"/api/v1/user/upload/**",
"/api/v1/admin/**",
"/api/v1/form/**",
"/actuator/**",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public class IdTokenAuthenticationFilter extends OncePerRequestFilter {
private final List<String> includedPatterns = List.of(
"/api/v1/auth/login",
"/api/v1/auth/signup",
"/api/v1/user/upload/**",
"/api/v1/form/**");
private final AntPathMatcher antPathMatcher = new AntPathMatcher();

Expand Down

0 comments on commit 997e345

Please sign in to comment.