maestro_taskconsole.routing.yml in Maestro 8.2
Same filename and directory in other branches
modules/maestro_taskconsole/maestro_taskconsole.routing.yml
3 string references to YAML keys in maestro_taskconsole.routing.yml
- MaestroTaskConsoleController::closeStatus in modules/
maestro_taskconsole/ src/ Controller/ MaestroTaskConsoleController.php - Internal method to close the project status.
- MaestroTaskConsoleController::getStatus in modules/
maestro_taskconsole/ src/ Controller/ MaestroTaskConsoleController.php - Method to fetch the status of a process.
- MaestroTaskConsoleController::getTasks in modules/
maestro_taskconsole/ src/ Controller/ MaestroTaskConsoleController.php - GetTasks method This method is called by the menu router for /taskconsole. The output of this method is the current user's task console.
File
modules/maestro_taskconsole/maestro_taskconsole.routing.ymlView source
- maestro_taskconsole.taskconsole:
- path: '/taskconsole/{highlightQueueID}'
- defaults:
- _controller: '\Drupal\maestro_taskconsole\Controller\MaestroTaskConsoleController::getTasks'
- _title: 'Task Console'
- highlightQueueID: '0'
- requirements:
- _permission: 'view maestro task console'
- options:
- no_cache: TRUE
-
- maestro_taskconsole.status_ajax_open:
- path: '/taskconsole/ajax/status/{processID}/{queueID}'
- defaults:
- _controller: '\Drupal\maestro_taskconsole\Controller\MaestroTaskConsoleController::getStatus'
- _title: 'Task Console Status'
- processID: '0'
- queueID: '0'
- requirements:
- _permission: 'view maestro task console'
- options:
- no_cache: TRUE
-
- maestro_taskconsole.status_ajax_close:
- path: '/taskconsole/ajax/status/close/{processID}/{queueID}'
- defaults:
- _controller: '\Drupal\maestro_taskconsole\Controller\MaestroTaskConsoleController::closeStatus'
- _title: 'Task Console Status Close'
- processID: '0'
- queueID: '0'
- requirements:
- _permission: 'view maestro task console'
- options:
- no_cache: TRUE