-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.xml
18 lines (15 loc) · 877 Bytes
/
api.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!--
This defines the top-level entry points in RdxApiHandler
the admin="true" says that the user has to be an admin to access that page
the isuser="true" says the user has to be logged in to access that page
The admin and isuser settings on the top-level tag are inherited by the contained tags
This can be overwritten (e.g., the /rdx/changeinstruments tag)
-->
<api handler="com.radiometrics.plugin.RdxApiHandler" id="rdx" admin="false" isuser="false">
<api request="/rdx/instruments" method="processInstruments"/>
<api request="/rdx/notifications" method="processNotifications"/>
<api request="/rdx/log" method="processLog" />
<api request="/rdx/settings" method="processSettings" />
<api request="/rdx/schema" method="processSchema"/>
<api request="/rdx/changeinstruments" method="processChangeInstruments" admin="true"/>
</api>