Skip to content

Commit

Permalink
feat: urlPatterns에 {"/api/wishlist/*","/api/reservations/*"} 적용(#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
mybloom committed Jun 10, 2022
1 parent 0cb6059 commit f5e21ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

@Slf4j
@RequiredArgsConstructor
@WebFilter(urlPatterns = "/api/*")
@WebFilter(urlPatterns = {"/api/wishlist/*","/api/reservations/*"})
public class AuthCheckFilter extends OncePerRequestFilter {

private final JwtTokenProvider jwtTokenProvider;
Expand Down

0 comments on commit f5e21ff

Please sign in to comment.