Skip to content

Commit

Permalink
Merge pull request #221 from JNU-econovation/bug/BE-83
Browse files Browse the repository at this point in the history
[BE-83] 로그인, 회원가입 JwtFilter 안거치게 수정
  • Loading branch information
LJH098 authored Mar 11, 2024
2 parents 6b9bc25 + 8d1fc42 commit b1e447b
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ public WebSecurityCustomizer webSecurityCustomizer() {
return web ->
web.ignoring()
.antMatchers(SwaggerPatterns)
.antMatchers(HttpMethod.POST, "/api/v1/applicants/mail",
.antMatchers(
HttpMethod.POST,
"/api/v1/applicants/mail",
"/api/v1/applicants",
"/api/v1/timetables",
"/api/v1/applicants/*/timetables",
Expand All @@ -116,7 +118,9 @@ public WebSecurityCustomizer webSecurityCustomizer() {
"/api/v1/token/refresh",
"/api/v1/login",
"/api/v1/register")
.antMatchers(HttpMethod.GET, "/api/v1/applicants",
.antMatchers(
HttpMethod.GET,
"/api/v1/applicants",
"/api/v1/token",
"/api/v1/timetables",
"/api/v1/applicants/*/timetables")
Expand Down

0 comments on commit b1e447b

Please sign in to comment.