Need advice linking one TYPO3 9 backend module to another. New module definitions:
MyCustomUtility::createModule(
'Acme.first',
'first',
'primaryController',
['list' => 'showAction'],
['roles' => 'admin,editor']
);
MyCustomUtility::createModule(
'Acme.second',
'second',
'secondaryController',
['info' => 'displayAction'],
['roles' => 'admin,editor']
);
Example linking function:
<f:backendLink controller="secondaryController" action="displayAction">Navigate</f:backendLink>
Fluid linking fails; any ideas?