Files
lichterei-web/kirby/config/api/routes/roles.php
Bastian Allgeier 01277f79f2 first version
2019-01-13 23:17:34 +01:00

22 lines
394 B
PHP
Executable File

<?php
/**
* Roles Routes
*/
return [
[
'pattern' => 'roles',
'method' => 'GET',
'action' => function () {
return $this->kirby()->roles();
}
],
[
'pattern' => 'roles/(:any)',
'method' => 'GET',
'action' => function (string $name) {
return $this->kirby()->roles()->find($name);
}
]
];