mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-14 07:01:17 +00:00
Add in_process field to Document model
This commit is contained in:
@@ -289,6 +289,13 @@ class Document(SoftDeleteModel, ModelWithOwner):
|
||||
),
|
||||
)
|
||||
|
||||
in_process = models.BooleanField(
|
||||
_("in process"),
|
||||
default=False,
|
||||
db_index=True,
|
||||
help_text=_("Whether the document is currently being processed."),
|
||||
)
|
||||
|
||||
class Meta:
|
||||
ordering = ("-created",)
|
||||
verbose_name = _("document")
|
||||
|
||||
Reference in New Issue
Block a user