create support plan
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import axios from "../../../config/axios";
|
||||
import { CreatePlanType } from "../types/SupportTypes";
|
||||
|
||||
export const createPlan = async (plan: CreatePlanType) => {
|
||||
const { data } = await axios.post("/support-plans", plan);
|
||||
return data;
|
||||
};
|
||||
|
||||
export const getPlans = async () => {
|
||||
const { data } = await axios.get("/support-plans/list");
|
||||
return data;
|
||||
};
|
||||
|
||||
export const getPlanById = async (id: string) => {
|
||||
const { data } = await axios.get(`/support-plans/${id}`);
|
||||
return data;
|
||||
};
|
||||
Reference in New Issue
Block a user