Rename tutorial bot to zulip.com domain.

(imported from commit e91ff584f565d76b52577194e3d263232e1a0e46)
This commit is contained in:
Tim Abbott 2013-07-24 14:17:08 -04:00
parent 083b0408da
commit c81f2b2b97
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ class Command(BaseCommand):
def handle(self, **options):
possible_tutorial_streams = Stream.objects.filter(Q(name__startswith='tutorial-'))
tutorial_bot = get_user_profile_by_email("humbug+tutorial@humbughq.com")
tutorial_bot = get_user_profile_by_email("tutorial-bot@zulip.com")
for stream in possible_tutorial_streams:
recipient = Recipient.objects.get(type=Recipient.STREAM, type_id=stream.id)

View File

@ -196,7 +196,7 @@ class Command(BaseCommand):
("Zulip New User Bot", "humbug+signups@humbughq.com"),
("Zulip Error Bot", "humbug+errors@humbughq.com"),
("Zulip Notification Bot", "humbug+notifications@humbughq.com"),
("Zulip Tutorial Bot", "humbug+tutorial@humbughq.com"),
("Zulip Tutorial Bot", "tutorial-bot@zulip.com"),
]
create_users(realms, hardcoded_humbug_users_nosubs)