invite-new-users: Specify that the limit spans for the whole day.

This commit is contained in:
Aman Agrawal 2021-01-29 16:11:03 +00:00 committed by Tim Abbott
parent 75a0fa5b91
commit b26727ed16
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ the article below describes each in more detail.
* Allow people to join based on the **domain** of their email address.
* Send **email invitations** to up to 100 addresses at a time.
* Send **email invitations** to up to 100 addresses in a day.
* Share a **reusable invitation link**.

View File

@ -5317,7 +5317,7 @@ def estimate_recent_invites(realms: Iterable[Realm], *, days: int) -> int:
def check_invite_limit(realm: Realm, num_invitees: int) -> None:
'''Discourage using invitation emails as a vector for carrying spam.'''
msg = _("You do not have enough remaining invites. "
msg = _("You do not have enough remaining invites for today. "
"Please contact {email} to have your limit raised. "
"No invitations were sent.").format(email=settings.ZULIP_ADMINISTRATOR)
if not settings.OPEN_REALM_CREATION:

View File

@ -1250,7 +1250,7 @@ earl-test@zulip.com""", ["Denmark"]))
self.invite(invitee_emails, ["Denmark"])
invitee_emails = ", ".join(str(i) for i in range(get_realm("zulip").max_invites - 1))
self.assert_json_error(self.invite(invitee_emails, ["Denmark"]),
"You do not have enough remaining invites. "
"You do not have enough remaining invites for today. "
"Please contact desdemona+admin@zulip.com to have your limit raised. "
"No invitations were sent.")