Files
ctms/frontend/src/api/notifications.ts
T
2026-02-04 10:52:34 +08:00

6 lines
269 B
TypeScript

import { apiGet } from "./axios";
import type { NotificationItem } from "../types/notifications";
export const listNotifications = (studyId: string, params?: Record<string, any>) =>
apiGet<NotificationItem[]>(`/api/v1/studies/${studyId}/notifications`, { params });