Files
domokits/local/modules/DigressivePrice/Config/routing.xml
2019-11-21 12:25:31 +01:00

24 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<routes xmlns="http://symfony.com/schema/routing"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">
<route id="DigressivePrice.create" path="/admin/module/DigressivePrice/create">
<default key="_controller">DigressivePrice\Controller\DigressivePriceController::createAction</default>
</route>
<route id="DigressivePrice.update" path="/admin/module/DigressivePrice/update">
<default key="_controller">DigressivePrice\Controller\DigressivePriceController::updateAction</default>
</route>
<route id="DigressivePrice.delete" path="/admin/module/DigressivePrice/delete">
<default key="_controller">DigressivePrice\Controller\DigressivePriceController::deleteAction</default>
</route>
<route id="DigressivePrice.front.updateTable" path="/digressive-price/table/{pseId}">
<default key="_controller">DigressivePrice\Controller\DigressivePriceFrontController::updateTableAction</default>
<requirement key="pseId">\d+</requirement>
</route>
</routes>