grafana/public/app/features/alerting/unified/api/grafana.ts

7 lines
207 B
TypeScript

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