forked from expo/troggle
13 lines
355 B
Python
13 lines
355 B
Python
|
from django.core.management.base import NoArgsCommand
|
||
|
|
||
|
from feincms.content.rss.models import RSSContent
|
||
|
|
||
|
class Command(NoArgsCommand):
|
||
|
help = "Run this as a cronjob."
|
||
|
|
||
|
def handle_noargs(self, **options):
|
||
|
for cls in RSSContent._feincms_content_models:
|
||
|
for content in cls.objects.all():
|
||
|
content.cache_content()
|
||
|
|