Skip to content

Commit

Permalink
급식조회 permit
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Mar 5, 2024
1 parent 2b9867d commit 2626755
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protected SecurityFilterChain configure(HttpSecurity httpSecurity) throws Except
.and()
.authorizeRequests()
.antMatchers("/mukgen/chef/**").hasRole("CHEF")
.antMatchers("/mukgen/meal/**").authenticated()
.antMatchers("/mukgen/meal/**").permitAll()
.antMatchers("/mukgen/like/**").authenticated()
.antMatchers("/mukgen/board-comment/**").authenticated()
.antMatchers("/mukgen/review/**").authenticated()
Expand All @@ -70,7 +70,6 @@ protected SecurityFilterChain configure(HttpSecurity httpSecurity) throws Except
.antMatchers("/mukgen/actuator/**").permitAll()
.antMatchers("/mukgen/mukgen-pick/**").permitAll()
.antMatchers("/mukgen/mail/**").permitAll()
.antMatchers("/mukgen/meal/today").permitAll()
.anyRequest().authenticated()

.and()
Expand Down

0 comments on commit 2626755

Please sign in to comment.