Skip to content

Commit

Permalink
Fix: 닉네임조회 시큐리티 제외
Browse files Browse the repository at this point in the history
  • Loading branch information
tioon committed May 21, 2024
1 parent 82f1fee commit 4224f5e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public WebSecurityCustomizer configure() {
web.ignoring()
.requestMatchers(HttpMethod.GET, "/api/member/profile-image/{memberId}")
.requestMatchers(HttpMethod.GET, "/api/category/{memberId}")
.requestMatchers(HttpMethod.GET, "/api/member/nickname/{nickname}")
//.requestMatchers(toH2Console())
.requestMatchers(NO_AUTH_LIST);
//.requestMatchers("/**");
Expand Down

0 comments on commit 4224f5e

Please sign in to comment.