Skip to content

Commit b7e3dc6

Browse files
committed
fix(transfer): allow ngee-tropics to be transferred
1 parent bfae9d6 commit b7e3dc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

archive_api/signals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def queue_essdive_transfer(sender, instance, **kwargs):
381381
"""
382382
# Queue the model run on creation
383383
if "created" in kwargs and kwargs["created"] and not kwargs["raw"] and \
384-
instance.dataset.access_level == DataSet.ACCESS_PUBLIC:
384+
instance.dataset.access_level in (DataSet.ACCESS_PUBLIC, DataSet.ACCESS_NGEET):
385385

386386
chain(tasks.transfer_start.s(instance.id),
387387
tasks.transfer.s(),

0 commit comments

Comments
 (0)