-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwebapi.xml
executable file
·28 lines (28 loc) · 1.16 KB
/
webapi.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd">
<route url="/V1/vuefront/graphql" method="POST">
<service class="Vuefront\Vuefront\Api\GraphqlInterface" method="graphql"/>
<resources>
<resource ref="anonymous"/>
</resources>
</route>
<route url="/V1/vuefront/callback" method="POST">
<service class="Vuefront\Vuefront\Api\GraphqlInterface" method="callback"/>
<resources>
<resource ref="anonymous"/>
</resources>
</route>
<route url="/V1/vuefront/information/:id" method="POST">
<service class="Vuefront\Vuefront\Api\InformationInterface" method="info"/>
<resources>
<resource ref="Vuefront_Vuefront::information" />
</resources>
</route>
<route url="/V1/vuefront/information/:id" method="GET">
<service class="Vuefront\Vuefront\Api\InformationInterface" method="info"/>
<resources>
<resource ref="Vuefront_Vuefront::information" />
</resources>
</route>
</routes>