kontenhumas-fe/service/agenda-settings/agenda-setting.ts

11 lines
325 B
TypeScript

import {
httpDeleteInterceptor,
httpGetInterceptor,
httpPostInterceptor,
} 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);
}