plan users

This commit is contained in:
hamid zarghami
2025-05-07 10:22:18 +03:30
parent 7e58aa0d3d
commit 32741a0c62
12 changed files with 193 additions and 6 deletions
@@ -25,3 +25,8 @@ export const deletePlan = async (id: string) => {
const { data } = await axios.delete(`/support-plans/${id}`);
return data;
};
export const getPlanUsers = async (id?: string) => {
const { data } = await axios.get(`/support-plans/${id}/users`);
return data;
};