mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
7 lines
207 B
TypeScript
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`);
|
|
}
|