We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8709afd commit 41d36f4Copy full SHA for 41d36f4
MDX2JSON/Installer.cls.xml
@@ -81,7 +81,12 @@ do ##class(MDX2JSON.Installer).setup(.pVars)</Description>
81
<Implementation><![CDATA[
82
Set Namespace=tInstaller.Evaluate("${Namespace}")
83
Do tInstaller.PushNS("%SYS")
84
- Set cspProperties("AutheEnabled") = 64
+ Do ##class(Security.System).GetInstallationSecuritySetting(.security)
85
+ If (security="None") {
86
+ Set cspProperties("AutheEnabled") = 64 // Unauthenticated
87
+ } Else {
88
+ Set cspProperties("AutheEnabled") = 32 // Password
89
+ }
90
Set cspProperties("NameSpace") = Namespace
91
Set cspProperties("IsNameSpaceDefault") = 1
92
Set cspProperties("DispatchClass")="MDX2JSON.REST"
0 commit comments