Skip to content

Commit 9501429

Browse files
committed
fix : wantedTime응답으로 변경
1 parent c2df5e6 commit 9501429

30 files changed

+49
-317
lines changed

.github/workflows/CD-api-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v4
24-
- name: Set up JDK 17
24+
- name: Set up JDK 21
2525
uses: actions/setup-java@v3
2626
with:
27-
java-version: '17'
27+
java-version: '21'
2828
distribution: 'adopt'
2929

3030
- name: Cache Gradle packages

.github/workflows/CD-api-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v4
24-
- name: Set up JDK 17
24+
- name: Set up JDK 21
2525
uses: actions/setup-java@v3
2626
with:
27-
java-version: '17'
27+
java-version: '21'
2828
distribution: 'adopt'
2929

3030
- name: Cache Gradle packages

.github/workflows/CD-consumer-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v4
24-
- name: Set up JDK 17
24+
- name: Set up JDK 21
2525
uses: actions/setup-java@v3
2626
with:
27-
java-version: '17'
27+
java-version: '21'
2828
distribution: 'adopt'
2929

3030
- name: Cache Gradle packages

.github/workflows/CD-consumer-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222

2323
steps:
2424
- uses: actions/checkout@v4
25-
- name: Set up JDK 17
25+
- name: Set up JDK 21
2626
uses: actions/setup-java@v3
2727
with:
28-
java-version: '17'
28+
java-version: '21'
2929
distribution: 'adopt'
3030

3131
- name: Cache Gradle packages

.github/workflows/CI-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up JDK 17
18+
- name: Set up JDK 21
1919
uses: actions/setup-java@v3
2020
with:
21-
java-version: '17'
21+
java-version: '21'
2222
distribution: 'adopt'
2323

2424
- name: Cache Gradle packages

.github/workflows/CI-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19-
- name: Set up JDK 17
19+
- name: Set up JDK 21
2020
uses: actions/setup-java@v3
2121
with:
22-
java-version: '17'
22+
java-version: '21'
2323
distribution: 'adopt'
2424

2525
- name: Cache Gradle packages

api/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ tasks.register("generateTypeScriptClient") {
2929
}
3030

3131

32+
3233
jib {
3334
val repositoryUsername = "y-edu"
3435
val repositoryToken = System.getenv("DEPLOY_TOKEN")
@@ -37,7 +38,7 @@ jib {
3738

3839

3940
from {
40-
image = "amazoncorretto:17"
41+
image = "amazoncorretto:21"
4142
}
4243
to {
4344
image = "ghcr.io/$repositoryUsername/${project.name}:${project.version}"
@@ -61,7 +62,7 @@ dependencies {
6162
implementation(project(":shared:discord-support"))
6263
implementation(project(":shared:rabbitmq-support"))
6364
implementation(project(":shared:sheet-support"))
64-
implementation(project(":shared:paymint-api"))
65+
implementation(group = "com.yedu", name = "payment-interface", version = "1.0.0-SNAPSHOT", classifier = "plain")
6566

6667

6768
implementation("org.springframework.boot:spring-boot-starter-graphql")
@@ -117,3 +118,4 @@ val bootJar: org.springframework.boot.gradle.tasks.bundling.BootJar by tasks
117118

118119
bootJar.enabled = true
119120
jar.enabled = true
121+

api/src/main/java/com/yedu/api/domain/matching/application/dto/res/ApplicationFormResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public class ApplicationFormResponse {
2222
private List<AvailableTime> availableTimes;
2323
private Parents parent;
2424
private Teacher teacher;
25+
private String wantedTime;
2526
private String matchingStatus;
2627
private String matchingRefuseReason;
2728
private ClassManagement classManagement;

api/src/main/java/com/yedu/api/domain/matching/application/dto/res/ClassMatchingForTeacherResponse.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public record ClassMatchingForTeacherResponse(
1818
String dong,
1919
List<String> goals,
2020
String favoriteStyle,
21-
List<DayTime> parentDayTimes,
21+
// List<DayTime> parentDayTimes,
22+
String wantedTime,
2223
List<DayTime> teacherDayTimes,
2324
MatchingStatus matchStatus) {}

api/src/main/java/com/yedu/api/domain/matching/application/mapper/ClassMatchingMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static ClassMatchingForTeacherResponse mapToApplicationFormToTeacherRespo
3030
applicationForm.getDong(),
3131
goals,
3232
applicationForm.getFavoriteStyle(),
33-
parentDayTimes,
33+
applicationForm.getWantTime(),
3434
teacherDayTimes,
3535
classMatching.getMatchStatus());
3636
}

0 commit comments

Comments
 (0)