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.
1 parent 024f3a4 commit ec1ed1dCopy full SHA for ec1ed1d
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