Skip to content

Commit

Permalink
[DDING-001] 모니터링 계정 권한 admin으로 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
wonjunYou committed Oct 10, 2024
1 parent cf7ecdc commit 4754f4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public SecurityFilterChain filterChain(HttpSecurity http, JwtAuthService authSer
.permitAll()
.requestMatchers(API_PREFIX + "/admin/**").hasRole("ADMIN")
.requestMatchers(API_PREFIX + "/club/**").hasRole("CLUB")
.requestMatchers(actuatorPath + "/**").hasRole("ACTUATOR")
.requestMatchers(actuatorPath + "/**").hasRole("ADMIN")
.requestMatchers(GET,
API_PREFIX + "/clubs/**",
API_PREFIX + "/notices/**",
Expand Down

0 comments on commit 4754f4f

Please sign in to comment.