diff options
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" + ] + ] + } + } ] |