We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5017115 commit d9f9389Copy full SHA for d9f9389
views/officership.go
@@ -500,9 +500,10 @@ func (v *Views) OfficerAddFunc(c echo.Context) error {
500
return errors.New("start date must be before today")
501
}
502
503
- // Add 22 hours to always be at the end of the day when adding vs the midnight for ending,
+ // Add 19 hours to always be at the end of the day when adding vs the midnight for ending,
504
// this takes into consideration daylight savings from the server side
505
- parseStart = parseStart.Add(time.Hour * 22)
+ // Liam - changed to be the start of an Admin meeting
506
+ parseStart = parseStart.Add(time.Hour * 19)
507
508
endDate := null.NewTime(time.Time{}, false)
509
0 commit comments