UPDATE: fix bug
All checks were successful
Build and Release / release (push) Successful in 1m13s

This commit is contained in:
2026-05-04 21:20:47 +07:00
parent 4817c29b8f
commit 1998cf2ec0
14 changed files with 101 additions and 35 deletions

View File

@@ -297,6 +297,8 @@ func (s *submissionService) UpdateSubmissionStatus(ctx context.Context, reviewer
Description: convert.StringToText(entity.Description),
Slug: convert.PtrToText(entity.Slug),
Status: convert.PtrToInt2(entity.Status),
TimeStart: convert.PtrFloat64ToInt4(entity.TimeStart),
TimeEnd: convert.PtrFloat64ToInt4(entity.TimeEnd),
ID: entityUUID,
})
@@ -314,6 +316,8 @@ func (s *submissionService) UpdateSubmissionStatus(ctx context.Context, reviewer
ProjectID: projectUUID,
Slug: convert.PtrToText(entity.Slug),
Status: convert.PtrToInt2(entity.Status),
TimeStart: convert.PtrFloat64ToInt4(entity.TimeStart),
TimeEnd: convert.PtrFloat64ToInt4(entity.TimeEnd),
})
if err != nil {