🐛(backend) add partial_update action to the abilities

partial_update action was missing for the permission.
So when we were patching the template,
it was not working.
This commit adds the partial_update action
to the abilities.
This commit is contained in:
Anthony LC
2024-04-16 17:00:17 +02:00
committed by Anthony LC
parent e13ecdd38d
commit 5074b271ad
5 changed files with 24 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ def test_api_documents_retrieve_anonymous_public():
"abilities": {
"destroy": False,
"manage_accesses": False,
"partial_update": False,
"retrieve": True,
"update": False,
},
@@ -60,6 +61,7 @@ def test_api_documents_retrieve_authenticated_unrelated_public():
"abilities": {
"destroy": False,
"manage_accesses": False,
"partial_update": False,
"retrieve": True,
"update": False,
},