autofixes

This commit is contained in:
Dennis Eichhorn 2024-04-07 17:47:06 +00:00
parent 40c26e0f28
commit 58378e6797
2 changed files with 10 additions and 10 deletions

View File

@ -23,7 +23,7 @@ return [
'dest' => '\Modules\Editor\Controller\ApiController:apiEditorCreate',
'verb' => RouteVerb::PUT,
'csrf' => true,
'active' => true,
'active' => true,
'permission' => [
'module' => ApiController::NAME,
'type' => PermissionType::CREATE,
@ -34,7 +34,7 @@ return [
'dest' => '\Modules\Editor\Controller\ApiController:apiEditorUpdate',
'verb' => RouteVerb::SET,
'csrf' => true,
'active' => true,
'active' => true,
'permission' => [
'module' => ApiController::NAME,
'type' => PermissionType::MODIFY,
@ -45,7 +45,7 @@ return [
'dest' => '\Modules\Editor\Controller\ApiController:apiEditorGet',
'verb' => RouteVerb::GET,
'csrf' => true,
'active' => true,
'active' => true,
'permission' => [
'module' => ApiController::NAME,
'type' => PermissionType::READ,
@ -56,7 +56,7 @@ return [
'dest' => '\Modules\Editor\Controller\ApiController:apiEditorDelete',
'verb' => RouteVerb::DELETE,
'csrf' => true,
'active' => true,
'active' => true,
'permission' => [
'module' => ApiController::NAME,
'type' => PermissionType::DELETE,
@ -69,7 +69,7 @@ return [
'dest' => '\Modules\Editor\Controller\ApiController:apiDocExport',
'verb' => RouteVerb::GET,
'csrf' => true,
'active' => true,
'active' => true,
'permission' => [
'module' => ApiController::NAME,
'type' => PermissionType::READ,

View File

@ -22,7 +22,7 @@ return [
[
'dest' => '\Modules\Editor\Controller\BackendController:setUpEditorEditor',
'verb' => RouteVerb::GET,
'active' => true,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::CREATE,
@ -32,7 +32,7 @@ return [
[
'dest' => '\Modules\Editor\Controller\BackendController:viewEditorCreate',
'verb' => RouteVerb::GET,
'active' => true,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::CREATE,
@ -44,7 +44,7 @@ return [
[
'dest' => '\Modules\Editor\Controller\BackendController:viewEditorList',
'verb' => RouteVerb::GET,
'active' => true,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -56,7 +56,7 @@ return [
[
'dest' => '\Modules\Editor\Controller\BackendController:viewEditorView',
'verb' => RouteVerb::GET,
'active' => true,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
@ -68,7 +68,7 @@ return [
[
'dest' => '\Modules\Editor\Controller\BackendController:viewEditorEdit',
'verb' => RouteVerb::GET,
'active' => true,
'active' => true,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::MODIFY,