Skip to content

Commit d9f9389

Browse files
committed
Changing the time added to be admin meeting start
1 parent 5017115 commit d9f9389

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

views/officership.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -500,9 +500,10 @@ func (v *Views) OfficerAddFunc(c echo.Context) error {
500500
return errors.New("start date must be before today")
501501
}
502502

503-
// Add 22 hours to always be at the end of the day when adding vs the midnight for ending,
503+
// Add 19 hours to always be at the end of the day when adding vs the midnight for ending,
504504
// this takes into consideration daylight savings from the server side
505-
parseStart = parseStart.Add(time.Hour * 22)
505+
// Liam - changed to be the start of an Admin meeting
506+
parseStart = parseStart.Add(time.Hour * 19)
506507

507508
endDate := null.NewTime(time.Time{}, false)
508509

0 commit comments

Comments
 (0)