diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-05-05 18:45:33 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:21:00 +0100 |
commit | 0f5d1297503a97e865ce211b2a0c801b21cfd613 (patch) | |
tree | bc849de6718bea64126c2d25fc36973a0599fb1c /fixtures | |
parent | 810d6074789e3e6b11854f676314972a6952b486 (diff) | |
download | Ishtar-0f5d1297503a97e865ce211b2a0c801b21cfd613.tar.bz2 Ishtar-0f5d1297503a97e865ce211b2a0c801b21cfd613.zip |
Geodata: display geodata list on sheet
Diffstat (limited to 'fixtures')
-rw-r--r-- | fixtures/initial_data-auth-fr.json | 191 |
1 files changed, 191 insertions, 0 deletions
diff --git a/fixtures/initial_data-auth-fr.json b/fixtures/initial_data-auth-fr.json index a74c70fa9..84d9b0792 100644 --- a/fixtures/initial_data-auth-fr.json +++ b/fixtures/initial_data-auth-fr.json @@ -4840,6 +4840,93 @@ } }, { + "model": "auth.permission", + "fields": { + "name": "Can add Geographic - Vector data", + "content_type": [ + "ishtar_common", + "geovectordata" + ], + "codename": "add_geovectordata" + } +}, +{ + "model": "auth.permission", + "fields": { + "name": "Can change Geographic - Vector data", + "content_type": [ + "ishtar_common", + "geovectordata" + ], + "codename": "change_geovectordata" + } +}, +{ + "model": "auth.permission", + "fields": { + "name": "Can delete Geographic - Vector data", + "content_type": [ + "ishtar_common", + "geovectordata" + ], + "codename": "delete_geovectordata" + } +}, +{ + "model": "auth.permission", + "fields": { + "name": "Can view Geographic - Vector data", + "content_type": [ + "ishtar_common", + "geovectordata" + ], + "codename": "view_geovectordata" + } +},{ + "model": "auth.permission", + "fields": { + "name": "Can view own Geographic - Vector data", + "content_type": [ + "ishtar_common", + "geovectordata" + ], + "codename": "view_own_geovectordata" + } +}, +{ + "model": "auth.permission", + "fields": { + "name": "Can add own Geographic - Vector data", + "content_type": [ + "ishtar_common", + "geovectordata" + ], + "codename": "add_own_geovectordata" + } +}, +{ + "model": "auth.permission", + "fields": { + "name": "Can change own Geographic - Vector data", + "content_type": [ + "ishtar_common", + "geovectordata" + ], + "codename": "change_own_geovectordata" + } +}, +{ + "model": "auth.permission", + "fields": { + "name": "Can delete own Geographic - Vector data", + "content_type": [ + "ishtar_common", + "geovectordata" + ], + "codename": "delete_own_geovectordata" + } +}, +{ "model": "auth.group", "fields": { "name": "Op\u00e9rations : lecture", @@ -6116,5 +6203,109 @@ ] ] } +}, +{ + "model": "auth.group", + "fields": { + "name": "Donn\u00e9es g\u00e9ographiques : ajout", + "permissions": [ + [ + "add_geovectordata", + "ishtar_common", + "geovectordata" + ] + ] + } +}, +{ + "model": "auth.group", + "fields": { + "name": "Donn\u00e9es g\u00e9ographiques : lecture", + "permissions": [ + [ + "view_geovectordata", + "ishtar_common", + "geovectordata" + ] + ] + } +}, +{ + "model": "auth.group", + "fields": { + "name": "Donn\u00e9es g\u00e9ographiques : modification", + "permissions": [ + [ + "change_geovectordata", + "ishtar_common", + "geovectordata" + ] + ] + } +}, +{ + "model": "auth.group", + "fields": { + "name": "Donn\u00e9es g\u00e9ographiques : suppression", + "permissions": [ + [ + "delete_geovectordata", + "ishtar_common", + "geovectordata" + ] + ] + } +}, +{ + "model": "auth.group", + "fields": { + "name": "Donn\u00e9es g\u00e9ographiques rattach\u00e9es : ajout", + "permissions": [ + [ + "add_own_geovectordata", + "ishtar_common", + "geovectordata" + ] + ] + } +}, +{ + "model": "auth.group", + "fields": { + "name": "Donn\u00e9es g\u00e9ographiques rattach\u00e9es : lecture", + "permissions": [ + [ + "view_own_geovectordata", + "ishtar_common", + "geovectordata" + ] + ] + } +}, +{ + "model": "auth.group", + "fields": { + "name": "Donn\u00e9es g\u00e9ographiques rattach\u00e9es : modification", + "permissions": [ + [ + "change_own_geovectordata", + "ishtar_common", + "geovectordata" + ] + ] + } +}, +{ + "model": "auth.group", + "fields": { + "name": "Donn\u00e9es g\u00e9ographiques rattach\u00e9es : suppression", + "permissions": [ + [ + "delete_own_geovectordata", + "ishtar_common", + "geovectordata" + ] + ] + } } ] |