|
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 });
|
|
}
|