management: Add a command to send initial welcome bot messages.

This commit is contained in:
Alex Vandiver
2023-03-21 17:40:42 +00:00
committed by Tim Abbott
parent ac45a3f20d
commit 8ad4ecb3a2

View File

@@ -0,0 +1,21 @@
from argparse import ArgumentParser
from typing import Any
from zerver.lib.management import ZulipBaseCommand
from zerver.lib.onboarding import send_initial_pms
class Command(ZulipBaseCommand):
help = """Sends the initial welcome bot message."""
def add_arguments(self, parser: ArgumentParser) -> None:
self.add_user_list_args(
parser,
help="Email addresses of user(s) to send welcome bot messages to.",
all_users_help="Send to every user on the realm.",
)
self.add_realm_args(parser)
def handle(self, *args: Any, **options: str) -> None:
for user_profile in self.get_users(options, self.get_realm(options), is_bot=False):
send_initial_pms(user_profile)