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