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 16a23b0 commit d662e3eCopy full SHA for d662e3e
src/main/java/com/example/triptalk/global/config/SecurityConfig.java
@@ -45,6 +45,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
45
.requestMatchers("/api/flights/**").permitAll()
46
// 호텔 조회는 비회원도 가능
47
.requestMatchers("/api/accommodations/**").permitAll()
48
+ // 여행 일정 생성용 FastAPI 연동 엔드포인트 허용
49
+ .requestMatchers("/api/trip-plan/from-fastapi").permitAll()
50
// Swagger UI 접근 허용
51
.requestMatchers(
52
"/swagger-ui/**",
0 commit comments