'typo3 extend backend module templateRootPaths

I want to extend the redirects-Modul within my extension, especially the template path, but it's not working:

module.tx_redirects {
    view {
        templateRootPaths {
            0 =
            1 =
            200 = EXT:extkey/Resources/Private/Extensions/Redirects/Templates/
        }

    }
}


Solution 1:[1]

This is not possible. you would need to XCLASS \TYPO3\CMS\Redirects\Controller\ManagementController::initializeView

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Georg Ringer