Skip to content

Commit

Permalink
chore: /chat endpoint에 대해 jwt token verify를 skip하라
Browse files Browse the repository at this point in the history
  • Loading branch information
runasy-koonta committed Jun 30, 2024
1 parent f12ffe9 commit 52a6272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/meltingpot/server/config/JwtFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
|| request.getRequestURI().contains("/docs") || request.getRequestURI()
.contains("/favicon.ico") || request.getRequestURI().contains("/h2-console") ||
request.getRequestURI().contains("/swagger-ui") ||
request.getRequestURI().contains("/api-docs")) {
request.getRequestURI().contains("/api-docs") || request.getRequestURI().contains("/chat")) {
filterChain.doFilter(request, response);
}
// 권한이 필요한 요청은 custom jwt filter를 거치도록 설정
Expand Down

0 comments on commit 52a6272

Please sign in to comment.