delete_old_carts.py 331 B

123456789101112
  1. """ shopping cart management command"""
  2. from django.core.management.base import NoArgsCommand
  3. from ... import cart
  4. class Command(NoArgsCommand):
  5. """ delete the shopping cart items """
  6. help = "Delete shopping cart items more than 90 days old"
  7. def handle_noargs(self, **options):
  8. cart.remove_old_cart_items()