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 authored and marksteward committed May 31, 2024
1 parent b59dffe commit 19a99f5
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 19a99f5

Please sign in to comment.