Skip to content

Commit 051c4a4

Browse files
committed
fix: 면접 예약 API 수정 완료
1 parent 881c958 commit 051c4a4

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,4 @@ out/
4343
application-dev.yml
4444

4545
### google ###
46-
src/main/resources/credentials/dasomGoogle.json
47-
48-
### google ###
49-
src/main/resources/credentials/dasomGoogle.json
46+
src/main/resources/credentials/dasomGoogleSheet.json

src/main/java/dmu/dasom/api/domain/applicant/entity/Applicant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public List<Object> toGoogleSheetRow(){
9292
this.email,
9393
this.grade,
9494
this.reasonForApply,
95-
this.activityWish,
95+
this.activityWish != null ? this.activityWish : "없음", // null일 경우 "없음" 반환
9696
this.isPrivacyPolicyAgreed,
9797
this.status.name(),
9898
this.createdAt.toString(),

src/main/java/dmu/dasom/api/domain/google/service/GoogleApiService.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,4 @@ public void processSheetsUpdate(List<Applicant> applicants, boolean isAppend) {
175175
}
176176
}
177177

178-
179-
180178
}

0 commit comments

Comments
 (0)