mirror of https://github.com/zulip/zulip.git
12 lines
445 B
Python
12 lines
445 B
Python
|
from django.core.management.base import BaseCommand
|
||
|
from zephyr.retention_policy import get_UserMessages_to_expunge
|
||
|
from zephyr.models import Message
|
||
|
|
||
|
class Command(BaseCommand):
|
||
|
help = ('Expunge old UserMessages and Messages from the database, '
|
||
|
+ 'according to the retention policy.')
|
||
|
|
||
|
def handle(self, *args, **kwargs):
|
||
|
get_UserMessages_to_expunge().delete()
|
||
|
Message.remove_unreachable()
|