Initial commit: CloudOps infrastructure platform
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'routes' => [
|
||||
'main' => [
|
||||
'mautic_project_index' => [
|
||||
'path' => '/projects/{page}',
|
||||
'controller' => 'Mautic\ProjectBundle\Controller\ProjectController::indexAction',
|
||||
],
|
||||
'mautic_project_action' => [
|
||||
'path' => '/projects/{objectAction}/{objectId}',
|
||||
'controller' => 'Mautic\ProjectBundle\Controller\ProjectController::executeAction',
|
||||
],
|
||||
],
|
||||
],
|
||||
'menu' => [
|
||||
'main' => [
|
||||
'project.menu.index' => [
|
||||
'id' => Mautic\ProjectBundle\Controller\ProjectController::ROUTE_INDEX,
|
||||
'route' => Mautic\ProjectBundle\Controller\ProjectController::ROUTE_INDEX,
|
||||
'access' => Mautic\ProjectBundle\Security\Permissions\ProjectPermissions::CAN_VIEW,
|
||||
'iconClass' => 'ri-archive-stack-fill',
|
||||
'priority' => 1,
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user