‪TYPO3CMS  11.5
Routes.php
Go to the documentation of this file.
1 <?php
5 return [
6  // Register wizard element browser
7  'wizard_element_browser' => [
8  'path' => '/wizard/record/browse',
9  'target' => \TYPO3\CMS\Recordlist\Controller\ElementBrowserController::class . '::mainAction',
10  ],
11  'record_download' => [
12  'path' => '/record/download',
13  'methods' => ['POST'],
14  'target' => \TYPO3\CMS\Recordlist\Controller\RecordDownloadController::class . '::handleDownloadRequest',
15  ],
16 ];