only view shifts later than now

This commit is contained in:
Jim Paine 2020-04-14 15:05:30 +01:00
Родитель f9ae6f5d07
Коммит 22b8dd3a39
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -97,7 +97,7 @@ namespace Project.Zap.Controllers
throw new ArgumentException("http://schemas.microsoft.com/identity/claims/objectidentifier claim is required ");
}
IEnumerable<Shift> shifts = this.shiftRepository.Get(x => x.EmployeeId == id.Value).AsEnumerable();
IEnumerable<Shift> shifts = this.shiftRepository.Get(x => x.EmployeeId == id.Value && x.Start > DateTime.Now).AsEnumerable();
if (shifts?.Any() == false)
{
ViewData["NoShifts"] = "You have no shifts booked.";