Skip to content

Commit

Permalink
Bump workshops sropping off the list for checkin to an hour after the…
Browse files Browse the repository at this point in the history
…y start
  • Loading branch information
ormiret committed May 30, 2024
1 parent c7bf2cb commit 5b5a471
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/schedule/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,8 @@ def workshop_steward_venue(venue_id: int):
.filter(
WorkshopProposal.type.in_(venue.allowed_types),
WorkshopProposal.is_accepted,
WorkshopProposal.scheduled_time > pendulum.now(event_tz.zone).naive(),
WorkshopProposal.scheduled_time > (
pendulum.now(event_tz.zone).naive() - timedelta(hours=1)),
WorkshopProposal.scheduled_duration.isnot(None),
WorkshopProposal.hide_from_schedule.isnot(True),
WorkshopProposal.user_scheduled.isnot(True),
Expand Down

0 comments on commit 5b5a471

Please sign in to comment.