[ [ 'dest' => '\Modules\Checklist\Controller\BackendController:viewChecklistList', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::CHECKLIST, ], ], ], '^/checklist/view(\?.*$|$)' => [ [ 'dest' => '\Modules\Checklist\Controller\BackendController:viewChecklistView', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::CHECKLIST, ], ], ], '^/checklist/template/list(\?.*$|$)' => [ [ 'dest' => '\Modules\Checklist\Controller\BackendController:viewChecklistTemplateList', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::TEMPLATE, ], ], ], '^/checklist/template/create(\?.*$|$)' => [ [ 'dest' => '\Modules\Checklist\Controller\BackendController:viewChecklistTemplateCreate', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::CREATE, 'state' => PermissionCategory::TEMPLATE, ], ], ], '^/checklist/template/view(\?.*$|$)' => [ [ 'dest' => '\Modules\Checklist\Controller\BackendController:viewChecklistTemplateView', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::TEMPLATE, ], ], ], '^/checklist/template/task/view(\?.*$|$)' => [ [ 'dest' => '\Modules\Checklist\Controller\BackendController:viewChecklistTemplateTaskView', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::READ, 'state' => PermissionCategory::TEMPLATE, ], ], ], '^/checklist/template/task/create(\?.*$|$)' => [ [ 'dest' => '\Modules\Checklist\Controller\BackendController:viewChecklistTemplateTaskCreate', 'verb' => RouteVerb::GET, 'active' => true, 'permission' => [ 'module' => BackendController::NAME, 'type' => PermissionType::CREATE, 'state' => PermissionCategory::TEMPLATE, ], ], ], ];