Merge branch 'dev' into feature-permissions

This commit is contained in:
Michael Shamoon
2022-12-13 06:57:33 -08:00
15 changed files with 128 additions and 94 deletions

View File

@@ -572,20 +572,6 @@ class PaperlessTask(models.Model):
help_text=_("Name of the Task which was run"),
)
task_args = models.JSONField(
null=True,
verbose_name=_("Task Positional Arguments"),
help_text=_(
"JSON representation of the positional arguments used with the task",
),
)
task_kwargs = models.JSONField(
null=True,
verbose_name=_("Task Named Arguments"),
help_text=_(
"JSON representation of the named arguments used with the task",
),
)
status = models.CharField(
max_length=30,
default=states.PENDING,