Skip to content

Commit

Permalink
fix: 유저 조회 API 익명 사용자도 접근 가능하도록 변경 (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
mungmnb777 authored Feb 7, 2024
1 parent 31dca65 commit dff418f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ public RequestMatcher serverInfoEndpoints() {
public RequestMatcher userEndpoints() {
return new OrRequestMatcher(
new AntPathRequestMatcher("/api/v1/user", HttpMethod.GET.toString()),
new AntPathRequestMatcher("/api/v1/user/all", HttpMethod.GET.toString())
new AntPathRequestMatcher("/api/v1/user/all", HttpMethod.GET.toString()),
new AntPathRequestMatcher("/api/v1/user/{id}", HttpMethod.GET.toString()),
new AntPathRequestMatcher("/api/v1/user/random", HttpMethod.GET.toString())
);
}

Expand Down

0 comments on commit dff418f

Please sign in to comment.