digest: don't show new users for MIT.

(imported from commit b7453cb30e6fcf5b36a5e3e53f67faeb17e74048)
This commit is contained in:
Jessica McKellar 2013-12-16 16:26:04 -05:00
parent 67b6b05f26
commit 1d11e2cce0
1 changed files with 6 additions and 3 deletions

View File

@ -81,9 +81,12 @@ def gather_hot_conversations(user_profile, stream_messages):
def gather_new_users(user_profile, threshold):
# Gather information on users in the realm who have recently
# joined.
new_users = list(UserProfile.objects.filter(
realm=user_profile.realm, date_joined__gt=threshold,
is_bot=False))
if user_profile.realm.domain == "mit.edu":
new_users = []
else:
new_users = list(UserProfile.objects.filter(
realm=user_profile.realm, date_joined__gt=threshold,
is_bot=False))
user_names = [user.full_name for user in new_users]
return len(user_names), user_names