From 0e7b80de8b2a5b116514691a3b57d3983001e28a Mon Sep 17 00:00:00 2001 From: seongho5356 Date: Wed, 7 Jan 2026 21:10:12 +0900 Subject: [PATCH 1/5] =?UTF-8?q?[SRLT-129]=20Chore:=20=EC=9A=94=EA=B8=88?= =?UTF-8?q?=EC=A0=9C=20=EA=B0=80=EA=B2=A9=EC=9D=84=20=ED=94=84=EB=A1=9C?= =?UTF-8?q?=EB=AA=A8=EC=85=98=20=EA=B0=80=EA=B2=A9=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../starlight/domain/order/enumerate/UsageProductType.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/starlight/domain/order/enumerate/UsageProductType.java b/src/main/java/starlight/domain/order/enumerate/UsageProductType.java index 2c857d24..274a1999 100644 --- a/src/main/java/starlight/domain/order/enumerate/UsageProductType.java +++ b/src/main/java/starlight/domain/order/enumerate/UsageProductType.java @@ -9,8 +9,8 @@ @RequiredArgsConstructor public enum UsageProductType { - AI_REPORT_1("AI_REPORT_1", 1, 49_000L, "LITE 요금제"), - AI_REPORT_2("AI_REPORT_2", 2, 89_000L, "STANDARD 요금제"); + AI_REPORT_1("AI_REPORT_1", 1, 0L, "LITE 요금제"), + AI_REPORT_2("AI_REPORT_2", 2, 0L, "STANDARD 요금제"); private final String code; // 상품 코드 private final int usageCount; // 사용 가능 횟수 From 2fddbfff8b67bf7bdc2ac5e4e2d74533181c0443 Mon Sep 17 00:00:00 2001 From: seongho5356 Date: Wed, 7 Jan 2026 21:15:01 +0900 Subject: [PATCH 2/5] =?UTF-8?q?[SRLT-129]=20Chore:=20Cors=EC=97=90=20?= =?UTF-8?q?=EA=B0=9C=EB=B0=9C=20=EC=A3=BC=EC=86=8C=EB=A5=BC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/starlight/bootstrap/SecurityConfig.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/starlight/bootstrap/SecurityConfig.java b/src/main/java/starlight/bootstrap/SecurityConfig.java index 50b0eaa2..dd30857e 100644 --- a/src/main/java/starlight/bootstrap/SecurityConfig.java +++ b/src/main/java/starlight/bootstrap/SecurityConfig.java @@ -39,6 +39,7 @@ public class SecurityConfig { @Value("${cors.origin.server}") String ServerBaseUrl; @Value("${cors.origin.client}") String clientBaseUrl; + @Value("${cors.origin.develop}") String devBaseUrl; private final JwtFilter jwtFilter; private final ExceptionFilter exceptionFilter; @@ -100,7 +101,8 @@ public CorsConfigurationSource corsConfigurationSource() { configuration.setAllowedOrigins(List.of( clientBaseUrl, - ServerBaseUrl + ServerBaseUrl, + devBaseUrl )); configuration.setAllowedMethods(List.of("GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS")); From b6890b6aaa90e1278681a4c72620f2e701aff66c Mon Sep 17 00:00:00 2001 From: seongho5356 Date: Wed, 7 Jan 2026 21:15:04 +0900 Subject: [PATCH 3/5] =?UTF-8?q?[SRLT-129]=20Chore:=20Cors=EC=97=90=20?= =?UTF-8?q?=EA=B0=9C=EB=B0=9C=20=EC=A3=BC=EC=86=8C=EB=A5=BC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config b/config index 1d8d33ff..229ee0d5 160000 --- a/config +++ b/config @@ -1 +1 @@ -Subproject commit 1d8d33ff2c629b8052cb92b8cc2398818546bec0 +Subproject commit 229ee0d573ab2eb4c9f5776b59344def8629b3dc From 2eb78dfb70ec965216c63d581d57b64d121e8b3c Mon Sep 17 00:00:00 2001 From: seongho5356 Date: Wed, 7 Jan 2026 21:28:12 +0900 Subject: [PATCH 4/5] =?UTF-8?q?[SRLT-129]=20Chore:=20=EA=B0=80=EA=B2=A9?= =?UTF-8?q?=EC=9D=84=20=EB=90=98=EB=8F=8C=EB=A6=B0=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../starlight/domain/order/enumerate/UsageProductType.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/starlight/domain/order/enumerate/UsageProductType.java b/src/main/java/starlight/domain/order/enumerate/UsageProductType.java index 274a1999..2c857d24 100644 --- a/src/main/java/starlight/domain/order/enumerate/UsageProductType.java +++ b/src/main/java/starlight/domain/order/enumerate/UsageProductType.java @@ -9,8 +9,8 @@ @RequiredArgsConstructor public enum UsageProductType { - AI_REPORT_1("AI_REPORT_1", 1, 0L, "LITE 요금제"), - AI_REPORT_2("AI_REPORT_2", 2, 0L, "STANDARD 요금제"); + AI_REPORT_1("AI_REPORT_1", 1, 49_000L, "LITE 요금제"), + AI_REPORT_2("AI_REPORT_2", 2, 89_000L, "STANDARD 요금제"); private final String code; // 상품 코드 private final int usageCount; // 사용 가능 횟수 From e83f14af24d10350c4c04cb730c1c1d40b064975 Mon Sep 17 00:00:00 2001 From: seongho5356 Date: Wed, 7 Jan 2026 21:33:59 +0900 Subject: [PATCH 5/5] =?UTF-8?q?[SRLT-129]=20test:=20=EB=B3=80=EA=B2=BD?= =?UTF-8?q?=EB=82=B4=EC=9A=A9=EC=9D=80=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=ED=99=98=EA=B2=BD=EC=84=A4=EC=A0=95=EC=97=90=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config b/config index 229ee0d5..f99b5394 160000 --- a/config +++ b/config @@ -1 +1 @@ -Subproject commit 229ee0d573ab2eb4c9f5776b59344def8629b3dc +Subproject commit f99b5394463d91b5c31a7907dd48c81e1760ee61