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.

18 lines
535 B

define([
'/static/app/DA-ITSI-CP-vmware-dashboards/libs/backbone.js',
'pm/ThresholdModel',
"/static/app/DA-ITSI-CP-vmware-dashboards/swc-vmware-cp/index.js",
],
function(Backbone, ThresholdModel, SWCVMware) {
const SplunkDsBaseCollection = SWCVMware.SplunkDsBaseCollection;
const splunk_utils = SWCVMware.SplunkUtil;
return SplunkDsBaseCollection.extend({
url: 'configs/conf-sa_threshold',
model: ThresholdModel,
initialize: function() {
SplunkDsBaseCollection.prototype.initialize.apply(this, arguments);
}
});
}
);