Add Actor middle ware and update documentation
This commit is contained in:
parent
fc811aeedd
commit
10d666828e
@ -1 +1 @@
|
|||||||
3.9.18
|
3.10.6
|
||||||
|
1
Pipfile
1
Pipfile
@ -52,6 +52,7 @@ bleach = "*"
|
|||||||
zxing-cpp = {version = "*", platform_machine = "== 'x86_64'"}
|
zxing-cpp = {version = "*", platform_machine = "== 'x86_64'"}
|
||||||
django-multiselectfield = "*"
|
django-multiselectfield = "*"
|
||||||
gotenberg-client = "*"
|
gotenberg-client = "*"
|
||||||
|
django-auditlog = "*"
|
||||||
|
|
||||||
[dev-packages]
|
[dev-packages]
|
||||||
# Linting
|
# Linting
|
||||||
|
@ -1140,7 +1140,10 @@ combination with PAPERLESS_CONSUMER_BARCODE_UPSCALE bigger than 1.0.
|
|||||||
|
|
||||||
#### [`PAPERLESS_AUDIT_ENABLED=<bool>`](#PAPERLESS_AUDIT_ENABLED){PAPERLESS_AUDIT_ENABLED}
|
#### [`PAPERLESS_AUDIT_ENABLED=<bool>`](#PAPERLESS_AUDIT_ENABLED){PAPERLESS_AUDIT_ENABLED}
|
||||||
|
|
||||||
: Enables an audit trail for each document,document type, correspondent, and tag. This records all changes made to the documents to meet requirement such as GoDB. **Once enabled cannot be disabled!!**
|
: Enables an audit trail for each document,document type, correspondent, and tag. This records all changes made to the documents to make the changes traceable.
|
||||||
|
|
||||||
|
!!! note Warning
|
||||||
|
Once enabled cannot be disabled
|
||||||
|
|
||||||
## Collate Double-Sided Documents {#collate}
|
## Collate Double-Sided Documents {#collate}
|
||||||
|
|
||||||
|
@ -290,6 +290,7 @@ INSTALLED_APPS = [
|
|||||||
"django_filters",
|
"django_filters",
|
||||||
"django_celery_results",
|
"django_celery_results",
|
||||||
"guardian",
|
"guardian",
|
||||||
|
"auditlog",
|
||||||
*env_apps,
|
*env_apps,
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -326,6 +327,7 @@ MIDDLEWARE = [
|
|||||||
"django.contrib.auth.middleware.AuthenticationMiddleware",
|
"django.contrib.auth.middleware.AuthenticationMiddleware",
|
||||||
"django.contrib.messages.middleware.MessageMiddleware",
|
"django.contrib.messages.middleware.MessageMiddleware",
|
||||||
"django.middleware.clickjacking.XFrameOptionsMiddleware",
|
"django.middleware.clickjacking.XFrameOptionsMiddleware",
|
||||||
|
"auditlog.middleware.AuditlogMiddleware",
|
||||||
]
|
]
|
||||||
|
|
||||||
# Optional to enable compression
|
# Optional to enable compression
|
||||||
|
Loading…
x
Reference in New Issue
Block a user