diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-03-25 17:59:58 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-16 16:43:03 +0200 |
commit | 766244bb0450d4b7d92906fde98299d010b702ec (patch) | |
tree | 612cb6d61f9522bca622693637f7960da20eeb22 /fixtures | |
parent | ed871697d607a1a00b36be0c787b56e5f34a1e17 (diff) | |
download | Ishtar-766244bb0450d4b7d92906fde98299d010b702ec.tar.bz2 Ishtar-766244bb0450d4b7d92906fde98299d010b702ec.zip |
🔧 default permissions for BiographicalNote
Diffstat (limited to 'fixtures')
-rw-r--r-- | fixtures/initial_data-auth-fr.json | 194 |
1 files changed, 193 insertions, 1 deletions
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" + ] + ] + } + } ] |