Skip to content

Commit

Permalink
Fix acl_user in api
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisKSeal committed Mar 3, 2024
1 parent 780f152 commit d512237
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tardis/tardis_portal/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,6 @@ def obj_create(self, bundle, **kwargs):
canDownload = entry.get("can_download", False)
canSensitive = entry.get("can_sensitive", False)
acl_user = get_or_create_user(username)
acl_user = User.objects.get(username=username)
if acl_user:
ExperimentACL.objects.create(
experiment=experiment,
Expand Down

0 comments on commit d512237

Please sign in to comment.