Compare commits

..

No commits in common. "0b48db62c19bc79bf7e834b988b482118ab61952" and "c86b41c48a3d76e8ea49f2ec418c171a198defba" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

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

View File

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