mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	digest: don't show new users for MIT.
(imported from commit b7453cb30e6fcf5b36a5e3e53f67faeb17e74048)
This commit is contained in:
		@@ -81,6 +81,9 @@ def gather_hot_conversations(user_profile, stream_messages):
 | 
				
			|||||||
def gather_new_users(user_profile, threshold):
 | 
					def gather_new_users(user_profile, threshold):
 | 
				
			||||||
    # Gather information on users in the realm who have recently
 | 
					    # Gather information on users in the realm who have recently
 | 
				
			||||||
    # joined.
 | 
					    # joined.
 | 
				
			||||||
 | 
					    if user_profile.realm.domain == "mit.edu":
 | 
				
			||||||
 | 
					        new_users = []
 | 
				
			||||||
 | 
					    else:
 | 
				
			||||||
        new_users = list(UserProfile.objects.filter(
 | 
					        new_users = list(UserProfile.objects.filter(
 | 
				
			||||||
                realm=user_profile.realm, date_joined__gt=threshold,
 | 
					                realm=user_profile.realm, date_joined__gt=threshold,
 | 
				
			||||||
                is_bot=False))
 | 
					                is_bot=False))
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user