From 620c23a92ed45e0818be3ecf2775950b898c8a11 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Nov 2019 03:54:43 -0400 Subject: [PATCH] Remove circular index create ACL permission Signed-off-by: Roberto Rosario --- HISTORY.rst | 2 ++ mayan/apps/document_indexing/apps.py | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 64d9dcbda5..b6fed37bee 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -15,6 +15,8 @@ - Update mayan_statistics migration 0002 to rename duplicate slugs. - Fix reverse inheritance permissions. +- Remove index create permission as an ACL permission + for indexes. 3.2.10 (2019-11-19) =================== diff --git a/mayan/apps/document_indexing/apps.py b/mayan/apps/document_indexing/apps.py index c28f567daf..4e37aa99a2 100644 --- a/mayan/apps/document_indexing/apps.py +++ b/mayan/apps/document_indexing/apps.py @@ -85,7 +85,6 @@ class DocumentIndexingApp(MayanAppConfig): ModelPermission.register( model=Index, permissions=( permission_acl_edit, permission_acl_view, - permission_document_indexing_create, permission_document_indexing_delete, permission_document_indexing_edit, permission_document_indexing_instance_view,