mediahub-fe/service/notifications/notifications.ts

7 lines
234 B
TypeScript
Raw Normal View History

2024-12-26 11:29:22 +00:00
import { getAPIInterceptor } from "@/config/api";
export async function getNotifications(page = 0, pageSize = 10) {
const url = `notification/list?enablePage=1&page=${page}&pageSize=${pageSize}`;
return getAPIInterceptor(url);
}