Adds field on import job to check if job completed

the task isn't a reliable indicator, unfortunately.
This commit is contained in:
Mouse Reeve
2021-01-07 08:08:12 -08:00
parent e60a984bea
commit d04271af75
4 changed files with 22 additions and 1 deletions

View File

@ -42,6 +42,7 @@ class ImportJob(models.Model):
created_date = models.DateTimeField(default=timezone.now)
task_id = models.CharField(max_length=100, null=True)
include_reviews = models.BooleanField(default=True)
complete = models.BooleanField(default=False)
privacy = models.CharField(
max_length=255,
default='public',