Skip to content

Commit

Permalink
✨ [Fix] SecurityConfig 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seyeon22222 committed Dec 31, 2024
1 parent d02b734 commit 8810f8d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ protected void configure(HttpSecurity http) throws Exception {
.antMatchers("/agenda/admin/**")
.hasRole("ADMIN")
.antMatchers(HttpMethod.PUT, "/pingpong/users/{intraId}")
.hasRole("ADMIN")
.antMatchers("/admin/calendar/**")
.hasAnyRole("USER", "ADMIN")
.antMatchers("/admin/calendar/**")
.hasRole("ADMIN")
.antMatchers(HttpMethod.POST, "/pingpong/match")
.hasAnyRole("USER", "ADMIN")
.antMatchers(HttpMethod.POST, "/pingpong/tournaments/{tournamentId}/users")
Expand Down

0 comments on commit 8810f8d

Please sign in to comment.