grafana.ts 207 B

123456
  1. import { getBackendSrv } from '@grafana/runtime';
  2. import { NotifierDTO } from 'app/types';
  3. export function fetchNotifiers(): Promise<NotifierDTO[]> {
  4. return getBackendSrv().get(`/api/alert-notifiers`);
  5. }