Skip to content

Commit

Permalink
all users get daily email
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Jul 30, 2020
1 parent b04f8bd commit 714053f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/townsquare/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ def is_user_townsquare_enabled(user):
# roll out emails to 20% of userbase to start. see if we get blowback
# KO 6/2/2020 - we got no complaints about the daily email yesterday, so upping to 40%
# KO 6/3/2020, upping to 55%
# KO 7/30/2020, upping to 100%

if user.pk % 100 < 80:
if user.pk % 100 < 101:
return True

if user.is_staff:
Expand Down

0 comments on commit 714053f

Please sign in to comment.