alert_notifications_ctrl.ts 428 B

1234567891011121314151617181920
  1. ///<reference path="../../headers/common.d.ts" />
  2. import angular from 'angular';
  3. import _ from 'lodash';
  4. import coreModule from '../../core/core_module';
  5. import config from 'app/core/config';
  6. export class AlertNotificationsCtrl {
  7. /** @ngInject */
  8. constructor(private backendSrv) {
  9. this.loadNotifications();
  10. }
  11. loadNotifications() {
  12. }
  13. }
  14. coreModule.controller('AlertNotificationsCtrl', AlertNotificationsCtrl);