Я не могу получить доступ к своему контроллеру из пункта меню. Мой контроллер расположен по адресу Cpy\Acquisition\Controller\Adminhtml\Rappel\Liste\Index.php
Что я делаю не так?
Это
adminhtml / routes. xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="admin">
<route id="rappel" frontName="rappel">
<module name="Cpy_Acquisition"/>
</route>
</router>
</config>
Это мое меню
adminhtml / menu. xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
<menu>
<add id="Cpy_Acquisition::menu"
title="Acquisition" module="Cpy_Acquisition"
sortOrder="21"
resource="Magento_Backend::content"
/>
<add id="Cpy_Acquisition::menu_item1"
title="Demande de rappel" module="Cpy_Acquisition"
sortOrder="10" parent="Aims_Acquisition::menu"
action="rappel/liste/index"
resource="Cpy_Acquisition::menu_item1"
/>
</menu>
</config>