mediahub-fe/service/agenda-setting/agenda-setting.ts

7 lines
278 B
TypeScript

import { httpGetInterceptor } from "../http-config/http-interceptor-service";
export async function getAgendaSettingsList(year = "", month = "", type = "") {
const url = `agenda-settings/list?year=${year}&month=${month}&type=${type}`;
return httpGetInterceptor({ url });
}