Skip to content

Commit

Permalink
feat: 로그 기록을 위한 인증 예외 주소 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
belljun3395 committed Sep 21, 2024
1 parent 0ca5a34 commit 1c42574
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ class WebSecurityConfig(
AntPathRequestMatcher("/api/v1/admin/**", HttpMethod.POST.name()),
AntPathRequestMatcher("/api/v1/articles/views", HttpMethod.POST.name()),
AntPathRequestMatcher("/api/v1/logs", HttpMethod.POST.name()),
AntPathRequestMatcher("/api/v1/logs/email/articles", HttpMethod.POST.name()),
AntPathRequestMatcher("/batch/**"),

/** 인증 불필요 */
Expand Down Expand Up @@ -190,6 +191,7 @@ class WebSecurityConfig(
/** 어드민 */
AntPathRequestMatcher("/api/v1/admin/**", HttpMethod.POST.name()),
AntPathRequestMatcher("/api/v1/articles/views", HttpMethod.POST.name()),
AntPathRequestMatcher("/api/v1/logs/email/articles", HttpMethod.POST.name()),
AntPathRequestMatcher("/api/v1/logs", HttpMethod.POST.name()),
AntPathRequestMatcher("/batch/**"),

Expand Down

0 comments on commit 1c42574

Please sign in to comment.