Skip to content

Commit

Permalink
docs: Adds comment to unused fields of DounloadLinks
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Christie authored and alanbchristie committed Jan 19, 2024
1 parent da5caa5 commit 7c0a951
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions viewer/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1083,6 +1083,7 @@ class DownloadLinks(models.Model):
static_link = models.BooleanField(
default=False, help_text="This preserves the proteins from the previous search"
)
# TODO - zip_contents is no longer Used (A.Christie 2024-01-19)
zip_contents = models.JSONField(
encoder=DjangoJSONEncoder,
null=True,
Expand All @@ -1097,6 +1098,7 @@ class DownloadLinks(models.Model):
" plus the retention time"
" (1 hour at the time of writing)",
)
# TODO - zip_file is no longer Used (A.Christie 2024-01-19)
zip_file = models.BooleanField(default=False)
original_search = models.JSONField(encoder=DjangoJSONEncoder, null=True)

Expand Down

0 comments on commit 7c0a951

Please sign in to comment.