Added admin command to scan personal history (#58)

Reverted exported history file to exclude timestamp. Simplified logging
for scanning user history.
This commit is contained in:
2018-11-17 19:37:51 -05:00
parent 895cf7d40d
commit 4ddf11aa41
6 changed files with 24 additions and 60 deletions

View File

@@ -0,0 +1,10 @@
from django.core.management.base import BaseCommand, CommandError
from api.utils import parse_history
from login.models import User
class Command(BaseCommand):
help = 'Update history for users who requested it'
def handle(self, *args, **options):
user_id = "polarbier"
parse_history(User.objects.get(id=user_id).secret)