22 lines
597 B
TypeScript
22 lines
597 B
TypeScript
import type { SupportListRes } from "@/features/support/lib/data";
|
|
import httpClient from "@/shared/config/api/httpClient";
|
|
import { SUPPORT } from "@/shared/config/api/URLs";
|
|
import type { AxiosResponse } from "axios";
|
|
|
|
export const support_api = {
|
|
async list(): Promise<AxiosResponse<SupportListRes>> {
|
|
const res = await httpClient.get(`${SUPPORT}list/`);
|
|
return res;
|
|
},
|
|
|
|
async send(body: {
|
|
district_id?: number;
|
|
problem: string;
|
|
date: string;
|
|
type: "PROBLEM" | "HELP";
|
|
}) {
|
|
const res = await httpClient.post(`${SUPPORT}send/`, body);
|
|
return res;
|
|
},
|
|
};
|