mirror of
https://github.com/zulip/zulip.git
synced 2025-11-11 09:27:43 +00:00
This is a preparatory commit for using isort for sorting all of our imports, merging changes to files where we can easily review the changes as something we're happy with. These are also files with relatively little active development, which means we don't expect much merge conflict risk from these changes.
22 lines
746 B
Python
22 lines
746 B
Python
from argparse import ArgumentParser
|
|
from typing import Any
|
|
|
|
from zerver.lib.actions import do_send_realm_reactivation_email
|
|
from zerver.lib.management import CommandError, ZulipBaseCommand
|
|
|
|
|
|
class Command(ZulipBaseCommand):
|
|
help = """Sends realm reactivation email to admins"""
|
|
|
|
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
|
|
if not realm.deactivated:
|
|
raise CommandError("The realm %s is already active." % (realm.name,))
|
|
print('Sending email to admins')
|
|
do_send_realm_reactivation_email(realm)
|
|
print('Done!')
|