Skip to content

Commit

Permalink
Merge pull request #85 from BbeumbungE/feat/BACK-338
Browse files Browse the repository at this point in the history
fix:api 권한 설정 수정
  • Loading branch information
Fishphobiagg authored Oct 3, 2023
2 parents 0fcf22b + 1c18487 commit cfac958
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity httpSecurity) throws
.authorizeHttpRequests(authorize -> authorize
.antMatchers(HttpMethod.OPTIONS).permitAll() // OPTIONS 메서드는 모두 허용
.antMatchers("/api/members/**").authenticated()
// .antMatchers("/api/profiles/**").authenticated()
.antMatchers("/api/profiles/**").authenticated()
.anyRequest().permitAll()
);

Expand Down

0 comments on commit cfac958

Please sign in to comment.