ext_localconf.php 437 B

12345678910
  1. <?php
  2. defined('TYPO3_MODE') || die();
  3. // Because of this issue https://forge.typo3.org/issues/89449,
  4. // we have to xclass the BackendUserAuthenticator backend middleware
  5. // to allow routes to be public (but restricted to authorized ips)
  6. $GLOBALS['TYPO3_CONF_VARS']['SYS']['Objects'][TYPO3\CMS\Backend\Middleware\BackendUserAuthenticator::class] = [
  7. 'className' => Opentalent\OtAdmin\Middleware\OtBackendUserAuthenticator::class
  8. ];