gdpr send to all

This commit is contained in:
H.T. Kruitbosch 2018-05-04 15:18:55 +02:00
parent c86b41c48a
commit 9b652fa935
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
__version__ = '0.1.29'
__version__ = '0.1.30'

View File

@ -21,7 +21,7 @@ def gdpr_ask_agreement(request):
if not request.user.is_superuser:
raise PermissionError()
for user in User.objects.filter(username='herbert').all():
for user in User.objects.filter(is_active=True).all():
token = get_random_string(length=32)
pending = PendingGDPRAgree(user=user, token=token)
pending.save()