1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from django.conf import settings
5 from django.core.management.base import BaseCommand
7 from catalogue.fields import EbookField
8 from catalogue.models import Book
11 class Command(BaseCommand):
12 help = 'Schedule regenerating stale ebook files.'
14 def handle(self, **options):
15 EbookField.schedule_all_stale(Book)