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 12a76d5 commit 69046a1Copy full SHA for 69046a1
src/main/java/com/back/global/security/SecurityConfig.java
@@ -71,9 +71,6 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
71
.requestMatchers(POST, "/user/auth/refresh").permitAll()
72
.requestMatchers(POST, "/cocktails/search").permitAll()
73
74
- // share은 인증 필요
75
- .requestMatchers(GET, "/cocktails/{id}/share").authenticated()
76
-
77
// 권한 불필요 - 조회 API
78
.requestMatchers(GET, "/").permitAll()
79
.requestMatchers(GET, "/actuator/**").permitAll()
0 commit comments