Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
webapi.xml 1.07 KiB
Newer Older
  • Learn to ignore specific revisions
  • Nicolas's avatar
    Nicolas committed
    <?xml version="1.0"?>
    <routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd">
        <!-- Category Widget -->
        <route url="/V1/categorywidget/:sliderId" method="GET">
            <service class="NicolasBejean\CategoryWidget\Api\CategoryWidgetRepositoryInterface" method="getById"/>
            <resources>
                <resource ref="NicolasBejean_CategoryWidget::global"/>
            </resources>
        </route>
        <route url="/V1/categorywidget/search" method="GET">
            <service class="NicolasBejean\CategoryWidget\Api\CategoryWidgetRepositoryInterface" method="getList"/>
            <resources>
                <resource ref="NicolasBejean_CategoryWidget::global"/>
            </resources>
        </route>
        <route url="/V1/categorywidget/:categoryWigetId" method="DELETE">
            <service class="NicolasBejean\CategoryWidget\Api\CategoryWidgetRepositoryInterface" method="deleteById"/>
            <resources>
                <resource ref="NicolasBejean_CategoryWidget::delete"/>
            </resources>
        </route>
    </routes>