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 e97a897 commit 024f3a4Copy full SHA for 024f3a4
src/main/java/com/back/global/security/SecurityConfig.java
@@ -72,6 +72,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
72
//르프레시 갱신 및 칵테일 검색
73
.requestMatchers(GET, "/user/auth/me").permitAll()
74
.requestMatchers(POST, "/user/auth/refresh").permitAll()
75
+ .requestMatchers(GET, "/cocktails").permitAll()
76
+ .requestMatchers(GET, "/cocktails/{id}").permitAll()
77
.requestMatchers(POST, "/cocktails/search").permitAll()
78
79
// 권한 불필요 - 조회 API
0 commit comments