mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
21 lines
482 B
PHP
21 lines
482 B
PHP
<?php
|
|
|
|
return [
|
|
'profile' => [
|
|
'name' => 'Profile',
|
|
'option' => [
|
|
'read' => 'Can read profile?',
|
|
'write' => 'Can create/edit profile?',
|
|
'delete' => 'Can delete profile?',
|
|
],
|
|
],
|
|
'adress' => [
|
|
'name' => 'Adress',
|
|
'option' => [
|
|
'read' => 'Can read adress?',
|
|
'write' => 'Can create/edit adress?',
|
|
'delete' => 'Can delete adress?',
|
|
],
|
|
],
|
|
];
|