Skip to content

Commit

Permalink
hotfix: 조회도 인증절차가 필요
Browse files Browse the repository at this point in the history
Signed-off-by: yurim0628 <[email protected]>
  • Loading branch information
yurim0628 authored May 31, 2024
1 parent 35207fc commit 6843df0
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
)
.authorizeHttpRequests(request -> request
.requestMatchers(AUTH_WHITELIST).permitAll()
.requestMatchers(HttpMethod.GET, PERMIT_ALL_GET_ENDPOINTS).permitAll()
.requestMatchers(HttpMethod.POST, "/members").permitAll()
.requestMatchers("/admins/**").hasAnyRole("ADMIN")
.anyRequest().authenticated()
Expand Down

0 comments on commit 6843df0

Please sign in to comment.