mirror of https://github.com/zulip/zulip.git
25 lines
751 B
Python
25 lines
751 B
Python
|
|
from typing import Any
|
|
|
|
from argparse import ArgumentParser
|
|
|
|
from zerver.lib.actions import do_deactivate_realm
|
|
from zerver.lib.management import ZulipBaseCommand
|
|
|
|
class Command(ZulipBaseCommand):
|
|
help = """Script to deactivate a realm."""
|
|
|
|
def add_arguments(self, parser: ArgumentParser) -> None:
|
|
self.add_realm_args(parser, True)
|
|
|
|
def handle(self, *args: Any, **options: str) -> None:
|
|
realm = self.get_realm(options)
|
|
assert realm is not None # Should be ensured by parser
|
|
|
|
if realm.deactivated:
|
|
print("The realm", options["realm_id"], "is already deactivated.")
|
|
exit(0)
|
|
print("Deactivating", options["realm_id"])
|
|
do_deactivate_realm(realm)
|
|
print("Done!")
|