Convert due date string to millisecond format.

Этот коммит содержится в:
Conor Macpherson
2022-12-23 15:37:31 -05:00
родитель 6daa39fd62
Коммит 64000da417
11 изменённых файлов: 35 добавлений и 41 удалений

Просмотреть файл

@@ -9575,7 +9575,7 @@ func (s *TimerLayerTrueUpReviewStore) CreateTrueUpReviewStatusRecord(reviewStatu
return result, err
}
func (s *TimerLayerTrueUpReviewStore) GetTrueUpReviewStatus(dueDate time.Time) (*model.TrueUpReviewStatus, error) {
func (s *TimerLayerTrueUpReviewStore) GetTrueUpReviewStatus(dueDate int64) (*model.TrueUpReviewStatus, error) {
start := time.Now()
result, err := s.TrueUpReviewStore.GetTrueUpReviewStatus(dueDate)