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 admin settings"""
|
|
from celery.schedules import crontab
|
|
|
|
CELERY_BEAT_SCHEDULE = {
|
|
"admin_latest_version": {
|
|
"task": "authentik.admin.tasks.update_latest_version",
|
|
"schedule": crontab(minute="*/60"), # Run every hour
|
|
"options": {"queue": "authentik_scheduled"},
|
|
}
|
|
}
|