mirror of https://github.com/zulip/zulip.git
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
from typing import Any
|
|
|
|
from zerver.lib.actions import bulk_add_subscriptions, do_create_realm, do_create_user
|
|
from zerver.lib.management import ZulipBaseCommand
|
|
from zerver.lib.onboarding import send_initial_realm_messages
|
|
from zerver.models import Realm, UserProfile
|
|
|
|
|
|
class Command(ZulipBaseCommand):
|
|
help = """Add a new realm and initial user for manual testing of the onboarding process."""
|
|
|
|
def handle(self, **options: Any) -> None:
|
|
string_id = 'realm{:02}'.format(
|
|
Realm.objects.filter(string_id__startswith='realm').count())
|
|
realm = do_create_realm(string_id, string_id)
|
|
|
|
name = '{:02}-user'.format(
|
|
UserProfile.objects.filter(email__contains='user@').count())
|
|
user = do_create_user(
|
|
f'{name}@{string_id}.zulip.com',
|
|
'password',
|
|
realm,
|
|
name,
|
|
role=UserProfile.ROLE_REALM_ADMINISTRATOR,
|
|
acting_user=None,
|
|
)
|
|
assert realm.signup_notifications_stream is not None
|
|
bulk_add_subscriptions([realm.signup_notifications_stream], [user])
|
|
|
|
send_initial_realm_messages(realm)
|