Skip to content

Commit

Permalink
feat: api/v2 시큐리티 설정 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
belljun3395 committed Dec 18, 2024
1 parent df31f89 commit a8710d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class LocalDelegatedSecurityConfigurer(
it
.requestMatchers(
AntPathRequestMatcher("/api/v1/**"),
AntPathRequestMatcher("/api/v2/**"),
).authenticated()
.anyRequest()
.denyAll()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class ProdDelegatedSecurityConfigurer(
it
.requestMatchers(
AntPathRequestMatcher("/api/v1/**"),
AntPathRequestMatcher("/api/v2/**"),
).authenticated()
.anyRequest()
.denyAll()
Expand Down

0 comments on commit a8710d4

Please sign in to comment.