‪TYPO3CMS  9.5
RequestMiddlewares.php
Go to the documentation of this file.
1 <?php
5 return [
6  'frontend' => [
7  'typo3/cms-workspaces/preview' => [
8  'target' => \TYPO3\CMS\Workspaces\Middleware\WorkspacePreview::class,
9  'after' => [
10  // TSFE is needed to store information about the preview
11  'typo3/cms-frontend/tsfe',
12  // A preview user will override an existing logged-in backend user
13  'typo3/cms-frontend/backend-user-authentication',
14  ],
15  'before' => [
16  'typo3/cms-frontend/page-resolver',
17  ]
18  ],
19  ]
20 ];