We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1765e9a + ec1ed1d commit f42bb91Copy full SHA for f42bb91
src/main/java/com/back/global/security/SecurityConfig.java
@@ -75,6 +75,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
75
.requestMatchers(GET, "/cocktails").permitAll()
76
.requestMatchers(GET, "/cocktails/{id}").permitAll()
77
.requestMatchers(POST, "/cocktails/search").permitAll()
78
+ .requestMatchers(GET, "/cocktails/{id}/share").permitAll()
79
80
// 권한 불필요 - 조회 API
81
.requestMatchers(GET, "/").permitAll()
0 commit comments