Skip to content

Commit

Permalink
[FIX] Installer bug. Delete useless library.
Browse files Browse the repository at this point in the history
  • Loading branch information
MakarovS96 committed Jul 10, 2017
1 parent d4ff3fe commit 5f63d8f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 17 deletions.
5 changes: 4 additions & 1 deletion cls/kutac/monitor/utils/Installer.cls.xml
Original file line number Diff line number Diff line change
Expand Up @@ -640,16 +640,19 @@ do ##class(kutac.monitor.utils.Installer).setup(.pVars)</Description>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
set Namespace = tInstaller.Evaluate("${Namespace}")
do tInstaller.PushNS("%SYS")
set cspProperties("NameSpace") = Namespace
set cspProperties("IsNameSpaceDefault") = $$$NO
set cspProperties("DispatchClass") = "kutac.REST.ConfigBroker"
set cspProperties("GroupById") = "sysmon"
set cspProperties("MatchRoles") = ":%All"
set cspProperties("CookiePath") = "/"
set tSC = ##class(Security.Applications).Create("/"_$ZCONVERT(Namespace, "l"), .cspProperties)
set tSC = ##class(Security.Applications).Create("/sysmon", .cspProperties)
if $$$ISERR(tSC) throw ##class(%Installer.Exception).CreateFromStatus(tSC)
kill cspProperties, security
do tInstaller.PopNS()
quit $$$OK
]]></Implementation>
</Method>
Expand Down
1 change: 0 additions & 1 deletion csp-data/csp/index.html.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
<script src="lib/js/angular-route.min.js"></script>
<script src="lib/js/angular-animate.min.js"></script>
<script src="lib/js/angular-notify.min.js"></script>
<script src="lib/js/ui-bootstrap-tpls.min.js"></script>
<!--build app.js-->
<script src="src/app.js"></script>
Expand Down
14 changes: 0 additions & 14 deletions csp-data/csp/lib/js/ui-bootstrap-tpls.min.js.xml

This file was deleted.

2 changes: 1 addition & 1 deletion csp-data/csp/src/app.js.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/
(function(){
'use strict'
angular.module('app',['ngRoute' ,'cgNotify' , 'ngAnimate', 'ui.bootstrap'])
angular.module('app',['ngRoute' ,'cgNotify' , 'ngAnimate'])
.config(['$routeProvider', function ($routeProvider) {
$routeProvider
.when('/',{
Expand Down

0 comments on commit 5f63d8f

Please sign in to comment.