Skip to content

Commit f42bb91

Browse files
authored
Merge pull request #357 from prgrms-web-devcourse-final-project/fix#356
[fix] share 보안 필터 설정
2 parents 1765e9a + ec1ed1d commit f42bb91

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/back/global/security/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
7575
.requestMatchers(GET, "/cocktails").permitAll()
7676
.requestMatchers(GET, "/cocktails/{id}").permitAll()
7777
.requestMatchers(POST, "/cocktails/search").permitAll()
78+
.requestMatchers(GET, "/cocktails/{id}/share").permitAll()
7879

7980
// 권한 불필요 - 조회 API
8081
.requestMatchers(GET, "/").permitAll()

0 commit comments

Comments
 (0)