plan users
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user