Skip to content

Commit

Permalink
fix: 멤버 조회시 인증을 요구하지 않음
Browse files Browse the repository at this point in the history
  • Loading branch information
Kdonghs committed Oct 11, 2024
1 parent 52d07b6 commit 0da636e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/team1/BE/seamless/util/auth/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
.requestMatchers("/h2-console/**", "/auth/**","/api/test/**").permitAll()
// 멤버 생성
.requestMatchers(HttpMethod.POST,"/api/project/{project_id}/member/**").permitAll()
// 멤버 조회
.requestMatchers(HttpMethod.GET,"/api/project/{project_id}/member/**").permitAll()
.anyRequest()
.authenticated()
)
Expand Down

0 comments on commit 0da636e

Please sign in to comment.