33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.AnnotationsQueryCtrl = exports.QueryOptionsCtrl = exports.QueryCtrl = exports.ConfigCtrl = exports.Datasource = undefined;
|
|
|
|
var _datasource = require('./datasource');
|
|
|
|
var _query = require('./query.controller');
|
|
|
|
var _config = require('./config.controller');
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
var ZabbixQueryOptionsController = function ZabbixQueryOptionsController() {
|
|
_classCallCheck(this, ZabbixQueryOptionsController);
|
|
};
|
|
|
|
ZabbixQueryOptionsController.templateUrl = 'datasource-zabbix/partials/query.options.html';
|
|
|
|
var ZabbixAnnotationsQueryController = function ZabbixAnnotationsQueryController() {
|
|
_classCallCheck(this, ZabbixAnnotationsQueryController);
|
|
};
|
|
|
|
ZabbixAnnotationsQueryController.templateUrl = 'datasource-zabbix/partials/annotations.editor.html';
|
|
|
|
exports.Datasource = _datasource.ZabbixAPIDatasource;
|
|
exports.ConfigCtrl = _config.ZabbixDSConfigController;
|
|
exports.QueryCtrl = _query.ZabbixQueryController;
|
|
exports.QueryOptionsCtrl = ZabbixQueryOptionsController;
|
|
exports.AnnotationsQueryCtrl = ZabbixAnnotationsQueryController;
|