Skip to content

Commit d662e3e

Browse files
committed
[#22] Chore: 권한 설정 추가
1 parent 16a23b0 commit d662e3e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/com/example/triptalk/global/config/SecurityConfig.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
4545
.requestMatchers("/api/flights/**").permitAll()
4646
// 호텔 조회는 비회원도 가능
4747
.requestMatchers("/api/accommodations/**").permitAll()
48+
// 여행 일정 생성용 FastAPI 연동 엔드포인트 허용
49+
.requestMatchers("/api/trip-plan/from-fastapi").permitAll()
4850
// Swagger UI 접근 허용
4951
.requestMatchers(
5052
"/swagger-ui/**",

0 commit comments

Comments
 (0)