You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
346 B
10 lines
346 B
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)
|