Publish now still works exactly as before (default action), but a coach can also pick a future date/time -- events.services.lineup. schedule_lineup_publish sets Lineup.scheduled_publish_at, and a new periodic task (events.tasks.publish_scheduled_lineups, every 15 minutes) publishes it once that time arrives via the same publish_lineup used for a manual publish, so selection/Attendance/notifications all work identically either way. A pending schedule can be cancelled or published early from the same screen. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ECGMEwrc2k4D8VQuwjstj9
49 lines
2.3 KiB
Python
49 lines
2.3 KiB
Python
"""Registry of the platform jobs Celery Beat runs on a schedule (see
|
|
rosterchief/settings.CELERY_BEAT_SCHEDULE).
|
|
|
|
Keyed on each task's dotted Celery name -- the same string a JobRun row carries in `name`
|
|
-- so features/signals.py can tell a tracked platform job apart from any other Celery task
|
|
that might get added later without a job to show for it, and so the control panel's Jobs
|
|
tab can label a JobRun without importing the task function itself.
|
|
"""
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
JOB_REGISTRY = {
|
|
"events.tasks.extend_event_series": {
|
|
"label": _("Extend event series"),
|
|
"description": _("Materialises recurring event occurrences up to the rolling horizon, so the calendar never runs dry."),
|
|
"schedule": _("Daily at 03:00"),
|
|
},
|
|
"events.tasks.send_deadline_reminders": {
|
|
"label": _("Send deadline reminders"),
|
|
"description": _("Nudges whoever still hasn't answered an event, one week before its answer deadline (or its start, when no deadline is set)."),
|
|
"schedule": _("Daily at 07:00"),
|
|
},
|
|
"events.tasks.publish_scheduled_lineups": {
|
|
"label": _("Publish scheduled line-ups"),
|
|
"description": _("Publishes any line-up whose coach-picked publish time has arrived."),
|
|
"schedule": _("Every 15 minutes"),
|
|
},
|
|
"billing.tasks.renew_subscriptions": {
|
|
"label": _("Renew subscriptions"),
|
|
"description": _("Opens the next billing period for clubs whose current one is running out."),
|
|
"schedule": _("Daily at 04:00"),
|
|
},
|
|
"billing.tasks.send_billing_reminders": {
|
|
"label": _("Send billing reminders"),
|
|
"description": _("Emails club admins about outstanding platform fees, once per escalation level."),
|
|
"schedule": _("Daily at 05:00"),
|
|
},
|
|
"billing.tasks.archive_overdue_clubs": {
|
|
"label": _("Archive overdue clubs"),
|
|
"description": _("Archives clubs unpaid past their grace period."),
|
|
"schedule": _("Daily at 06:00"),
|
|
},
|
|
"club.tasks.generate_seasons": {
|
|
"label": _("Generate seasons"),
|
|
"description": _("Generates the next two years of season rows for every active club, so signups and rosters never hit a missing season."),
|
|
"schedule": _("Monthly, 1st at 05:00"),
|
|
},
|
|
}
|