Skip to content

Commit

Permalink
Assign t2 reviewer permission to demo user upon reset
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmullen committed Dec 15, 2023
1 parent 257585a commit 6727f39
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion miqa/core/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import dateparser
from django.conf import settings
from django.contrib.auth.models import User
from guardian.shortcuts import assign_perm
import pandas
from rest_framework.exceptions import APIException

Expand Down Expand Up @@ -53,13 +54,15 @@ def _download_from_s3(path: str, public: bool) -> bytes:
def reset_demo():
Project.objects.all().delete()

demo_user = User.objects.get(username='[email protected]')
demo_project = Project(
name='Demo Project',
creator=User.objects.get(username='[email protected]'),
creator=demo_user,
import_path='s3://miqa-storage/IXI_demo.csv',
export_path='samples/demo.json',
)
demo_project.save()
assign_perm('tier_2_reviewer', demo_user, demo_project)

import_data(demo_project.id)

Expand Down

0 comments on commit 6727f39

Please sign in to comment.