Skip to content

Commit 32f57ff

Browse files
authored
Merge pull request #60 from 2025-snowCode/dev
[Deploy] Options 추가
2 parents ef2f356 + e375a13 commit 32f57ff

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/main/java/snowcode/snowcode/common/JwtAuthFilter.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
4040

4141
try {
4242

43+
if ("OPTIONS".equalsIgnoreCase(request.getMethod())) {
44+
filterChain.doFilter(request, response);
45+
return;
46+
}
47+
4348
String jwt = null;
4449

4550
// if swagger

0 commit comments

Comments
 (0)