Skip to content

Commit

Permalink
[DEV-77] actuator permitAll() 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
wonjunYou committed Sep 30, 2024
1 parent 000e6fc commit 6ff7111
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public SecurityFilterChain filterChain(HttpSecurity http, JwtAuthService authSer
.requestMatchers(API_PREFIX + "/auth/**").permitAll()
.requestMatchers(API_PREFIX + "/admin/**").hasRole("ADMIN")
.requestMatchers(API_PREFIX + "/club/**").hasRole("CLUB")
.requestMatchers(API_PREFIX + "/actuator/**").permitAll()
.requestMatchers(GET,
API_PREFIX + "/clubs/**",
API_PREFIX + "/notices/**",
Expand Down

0 comments on commit 6ff7111

Please sign in to comment.