mirror of https://github.com/zulip/zulip.git
15 lines
396 B
Python
15 lines
396 B
Python
from typing import Any
|
|
|
|
from typing_extensions import override
|
|
|
|
from zerver.lib.management import ZulipBaseCommand, abort_unless_locked
|
|
from zerver.lib.retention import archive_messages, clean_archived_data
|
|
|
|
|
|
class Command(ZulipBaseCommand):
|
|
@override
|
|
@abort_unless_locked
|
|
def handle(self, *args: Any, **options: str) -> None:
|
|
clean_archived_data()
|
|
archive_messages()
|