chores.py 358 B

123456789101112
  1. from django.conf import settings
  2. from django.core.management import BaseCommand
  3. from django.utils import timezone
  4. from desecapi.models import Captcha
  5. class Command(BaseCommand):
  6. def handle(self, *args, **kwargs):
  7. # delete expired captchas
  8. Captcha.objects.filter(created__lt=timezone.now() - settings.CAPTCHA_VALIDITY_PERIOD).delete()