comparison forums/management/commands/forum_cleanup.py @ 595:f3fded5df64b

Forum topic & post updates now affect the RSS feed data in Redis. This is for bitbucket issue #10.
author Brian Neal <bgneal@gmail.com>
date Thu, 24 May 2012 15:49:15 -0500
parents ee87ea74d46b
children
comparison
equal deleted inserted replaced
594:2469d5864249 595:f3fded5df64b
3 now this entails deleting old forum and topic last visit records. 3 now this entails deleting old forum and topic last visit records.
4 4
5 """ 5 """
6 import datetime 6 import datetime
7 7
8 from django.core.management.base import NoArgsCommand, CommandError 8 from django.core.management.base import NoArgsCommand
9 9
10 from forums.models import ForumLastVisit, TopicLastVisit 10 from forums.models import ForumLastVisit, TopicLastVisit
11 import forums.unread 11 import forums.unread
12 12
13 13