generated from intersystems-community/iris-rest-api-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.xml
executable file
·30 lines (29 loc) · 880 Bytes
/
module.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
29
30
<?xml version="1.0" encoding="UTF-8"?>
<Export generator="Cache" version="25">
<Document name="sql-rest.ZPM">
<Module>
<Name>sql-rest</Name>
<Version>1.1.1</Version>
<Description>Simple REST API web app which accepts SQL and returns the result in JSON</Description>
<Packaging>module</Packaging>
<SourcesRoot>src</SourcesRoot>
<Resource Name="shvarov.SQL.PKG"/>
<Dependencies>
<ModuleReference>
<Name>swagger-ui</Name>
<Version>1.*.*</Version>
</ModuleReference>
</Dependencies>
<CSPApplication
Url="/sql"
DispatchClass="shvarov.SQL.REST.Query"
MatchRoles=":{$dbrole}"
PasswordAuthEnabled="1"
UnauthenticatedEnabled="0"
Recurse="1"
UseCookies="2"
CookiePath="/sql"
/>
</Module>
</Document>
</Export>