aa0e8edb8b
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
11 lines
310 B
Python
11 lines
310 B
Python
"""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"},
|
|
}
|
|
}
|