sources/saml: correctly cleanup transient users, update forms
This commit is contained in:
9
passbook/sources/saml/settings.py
Normal file
9
passbook/sources/saml/settings.py
Normal file
@ -0,0 +1,9 @@
|
||||
"""saml source settings"""
|
||||
from celery.schedules import crontab
|
||||
|
||||
CELERY_BEAT_SCHEDULE = {
|
||||
"saml_source_cleanup": {
|
||||
"task": "passbook.sources.saml.tasks.clean_temporary_users",
|
||||
"schedule": crontab(minute="*/5"),
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user