123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import {
- addErrorMessage,
- addLoadingMessage,
- clearIndicators,
- } from 'sentry/actionCreators/indicator';
- import {Client} from 'sentry/api';
- import {t} from 'sentry/locale';
- import {logException} from 'sentry/utils/logging';
- import {Monitor} from 'sentry/views/monitors/types';
- export async function deleteMonitor(api: Client, orgId: string, monitorId: string) {
- addLoadingMessage(t('Deleting Monitor...'));
- try {
- await api.requestPromise(`/organizations/${orgId}/monitors/${monitorId}/`, {
- method: 'DELETE',
- });
- clearIndicators();
- } catch {
- addErrorMessage(t('Unable to remove monitor.'));
- }
- }
- export async function updateMonitor(
- api: Client,
- orgId: string,
- monitorId: string,
- data: Partial<Monitor>
- ) {
- addLoadingMessage();
- try {
- const resp = await api.requestPromise(
- `/organizations/${orgId}/monitors/${monitorId}/`,
- {method: 'PUT', data}
- );
- clearIndicators();
- return resp;
- } catch (err) {
- logException(err);
- addErrorMessage(t('Unable to update monitor.'));
- }
- return null;
- }
|