37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php
|
|
return [
|
|
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
|
|
'filename' => '/var/www/html/user/config/groups.yaml',
|
|
'modified' => 1591823173,
|
|
'data' => [
|
|
'administrators' => [
|
|
'groupname' => 'administrators',
|
|
'readableName' => 'Administrators',
|
|
'description' => 'The group of administrators',
|
|
'icon' => 'child',
|
|
'access' => [
|
|
'admin' => [
|
|
'login' => true
|
|
],
|
|
'site' => [
|
|
'login' => true
|
|
]
|
|
]
|
|
],
|
|
'moderator' => [
|
|
'groupname' => 'moderator',
|
|
'readableName' => 'Moderator',
|
|
'description' => 'The group of moderator',
|
|
'icon' => 'child',
|
|
'access' => [
|
|
'admin' => [
|
|
'login' => true
|
|
],
|
|
'site' => [
|
|
'login' => true
|
|
]
|
|
]
|
|
]
|
|
]
|
|
];
|