Skip to content

Commit

Permalink
[feature/#237] Member config
Browse files Browse the repository at this point in the history
  • Loading branch information
whitem4rk committed Feb 21, 2024
1 parent 335ba57 commit 0d5527f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,10 @@ protected void configure(HttpSecurity http) throws Exception {
.hasAnyRole(CHIEF.toString(), VICE_CHIEF.toString())

// 회원 관리
.antMatchers("/members/executive", "/members/hof")
.antMatchers("/members/executive")
.hasRole(ANONYMOUS.toString())
.antMatchers("/members/hof")
.hasRole(DEACTIVATED.toString())
.antMatchers("/members/approved/role")
.hasRole(SECRETARY.toString())
.antMatchers("/members/approved/type")
Expand Down

0 comments on commit 0d5527f

Please sign in to comment.