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 12a76d5 + 69046a1 commit 1468d07Copy full SHA for 1468d07
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