You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
531 B
17 lines
531 B
require.config({
|
|
paths: {
|
|
"DA-ITSI-CP-windows-dashboards": "../app/DA-ITSI-CP-windows-dashboards/js/DA-ITSI-CP-windows-dashboards",
|
|
},
|
|
});
|
|
require([
|
|
'DA-ITSI-CP-windows-dashboards/components/ldaprecordview',
|
|
'splunkjs/mvc/simplexml/ready!',
|
|
'/static/app/DA-ITSI-CP-windows-dashboards/js/common/contrib/jquery-3.5.0.min.js',
|
|
], function(LDAPRecordView) {
|
|
|
|
var report = new LDAPRecordView({
|
|
"id": "audit_report",
|
|
"managerid": "audit_query",
|
|
"el": $("#audit_report")
|
|
}).render();
|
|
}); |