This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/authentik/admin/settings.py

11 lines
305 B
Python
Raw Normal View History

2020-12-05 21:08:42 +00:00
"""authentik admin settings"""
from celery.schedules import crontab
CELERY_BEAT_SCHEDULE = {
"admin_latest_version": {
2020-12-05 21:08:42 +00:00
"task": "authentik.admin.tasks.update_latest_version",
"schedule": crontab(minute=0), # Run every hour
2020-12-05 21:08:42 +00:00
"options": {"queue": "authentik_scheduled"},
}
}