Arch changes and feature flags

This commit is contained in:
James Pattinson
2025-11-23 15:46:51 +00:00
parent 6f1d09cd77
commit e1659c07ea
22 changed files with 577 additions and 119 deletions
@@ -225,6 +225,11 @@ export const userService = {
const response = await api.put(`/users/${userId}`, data);
return response.data;
},
async deleteUser(userId: number): Promise<{ message: string }> {
const response = await api.delete(`/users/${userId}`);
return response.data;
},
};
export const membershipService = {