From 9e8b96cd34b063c1aa144a65e2df5e29c26b7428 Mon Sep 17 00:00:00 2001 From: Felix Eckhofer Date: Wed, 12 Jun 2024 15:34:49 +0200 Subject: [PATCH] Fix: Revert masking the content field in auditlog (#6981) --- src/documents/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/documents/models.py b/src/documents/models.py index f3e5f22ed..12fd6f63d 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -929,7 +929,6 @@ if settings.AUDIT_LOG_ENABLED: auditlog.register( Document, m2m_fields={"tags"}, - mask_fields=["content"], exclude_fields=["modified"], ) auditlog.register(Correspondent)