mirror of
https://github.com/simple-login/app.git
synced 2024-11-15 05:07:33 +08:00
13 lines
389 B
Python
13 lines
389 B
Python
|
import arrow
|
||
|
|
||
|
from app.db import Session
|
||
|
from app.log import LOG
|
||
|
from app.models import AliasAuditLog
|
||
|
|
||
|
|
||
|
def cleanup_alias_audit_log(oldest_allowed: arrow.Arrow):
|
||
|
LOG.i(f"Deleting alias_audit_log older than {oldest_allowed}")
|
||
|
count = AliasAuditLog.filter(AliasAuditLog.created_at < oldest_allowed).delete()
|
||
|
Session.commit()
|
||
|
LOG.i(f"Deleted {count} alias_audit_log entries")
|