From 766244bb0450d4b7d92906fde98299d010b702ec Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 25 Mar 2024 17:59:58 +0100 Subject: đŸ”§ default permissions for BiographicalNote MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fixtures/initial_data-auth-fr.json | 194 ++++++++++++++++++++++++++++++++++++- 1 file changed, 193 insertions(+), 1 deletion(-) (limited to 'fixtures') diff --git a/fixtures/initial_data-auth-fr.json b/fixtures/initial_data-auth-fr.json index 9ef5e728a..6ae64f829 100644 --- a/fixtures/initial_data-auth-fr.json +++ b/fixtures/initial_data-auth-fr.json @@ -6388,5 +6388,197 @@ ] ] } -} +}, + { + "model": "auth.permission", + "fields": { + "name": "Can add biographical note", + "content_type": [ + "ishtar_common", + "biographicalnote" + ], + "codename": "add_biographicalnote" + } + }, + { + "model": "auth.permission", + "fields": { + "name": "Can change biographical note", + "content_type": [ + "ishtar_common", + "biographicalnote" + ], + "codename": "change_biographicalnote" + } + }, + { + "model": "auth.permission", + "fields": { + "name": "Can delete biographical note", + "content_type": [ + "ishtar_common", + "biographicalnote" + ], + "codename": "delete_biographicalnote" + } + }, + { + "model": "auth.permission", + "fields": { + "name": "Can view biographical note", + "content_type": [ + "ishtar_common", + "biographicalnote" + ], + "codename": "view_biographicalnote" + } + }, + { + "model": "auth.permission", + "fields": { + "name": "Can view own Biographical note", + "content_type": [ + "ishtar_common", + "biographicalnote" + ], + "codename": "view_own_biographicalnote" + } + }, + { + "model": "auth.permission", + "fields": { + "name": "Can add own Biographical note", + "content_type": [ + "ishtar_common", + "biographicalnote" + ], + "codename": "add_own_biographicalnote" + } + }, + { + "model": "auth.permission", + "fields": { + "name": "Can change own Biographical note", + "content_type": [ + "ishtar_common", + "biographicalnote" + ], + "codename": "change_own_biographicalnote" + } + }, + { + "model": "auth.permission", + "fields": { + "name": "Can delete own Biographical note", + "content_type": [ + "ishtar_common", + "biographicalnote" + ], + "codename": "delete_own_biographicalnote" + } + }, + { + "model": "auth.group", + "fields": { + "name": "Notices biographiques : ajout", + "permissions": [ + [ + "add_biographicalnote", + "ishtar_common", + "biographicalnote" + ] + ] + } + }, + { + "model": "auth.group", + "fields": { + "name": "Notices biographiques : lecture", + "permissions": [ + [ + "view_biographicalnote", + "ishtar_common", + "biographicalnote" + ] + ] + } + }, + { + "model": "auth.group", + "fields": { + "name": "Notices biographiques : modification", + "permissions": [ + [ + "change_biographicalnote", + "ishtar_common", + "biographicalnote" + ] + ] + } + }, + { + "model": "auth.group", + "fields": { + "name": "Notices biographiques : suppression", + "permissions": [ + [ + "delete_biographicalnote", + "ishtar_common", + "biographicalnote" + ] + ] + } + }, + { + "model": "auth.group", + "fields": { + "name": "Notices biographiques rattach\u00e9es : ajout", + "permissions": [ + [ + "add_own_biographicalnote", + "ishtar_common", + "biographicalnote" + ] + ] + } + }, + { + "model": "auth.group", + "fields": { + "name": "Notices biographiques rattach\u00e9es : lecture", + "permissions": [ + [ + "view_own_biographicalnote", + "ishtar_common", + "biographicalnote" + ] + ] + } + }, + { + "model": "auth.group", + "fields": { + "name": "Notices biographiques rattach\u00e9es : modification", + "permissions": [ + [ + "change_own_biographicalnote", + "ishtar_common", + "biographicalnote" + ] + ] + } + }, + { + "model": "auth.group", + "fields": { + "name": "Notices biographiques rattach\u00e9es : suppression", + "permissions": [ + [ + "delete_own_biographicalnote", + "ishtar_common", + "biographicalnote" + ] + ] + } + } ] -- cgit v1.2.3