HabitPay / backend

https://habitpay.github.io/backend/
0 stars 0 forks source link

[feat] 타임존 설정 필요한 곳 추가 #298 #299

Closed solgito closed 3 weeks ago

solgito commented 3 weeks ago

코드 주요 내용

//ChallengeCreationService.java

private void validateChallengeParticipatingDays(ChallengeCreationRequest challengeCreationRequest) {
    ZonedDateTime startDate = TimeZoneConverter.convertEtcToLocalTimeZone(challengeCreationRequest.getStartDate());
    ZonedDateTime endDate = TimeZoneConverter.convertEtcToLocalTimeZone(challengeCreationRequest.getEndDate());
    ...
}