Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
feat: admin body management service integration
Browse files Browse the repository at this point in the history
  • Loading branch information
amarnath-dev committed Mar 9, 2024
1 parent c29073b commit b5e784f
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions client/src/Services/bodyServices.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import thaliaAPI from "../API/thaliaAPI";

export const getTopics = async () => {
try {
const response = await thaliaAPI.get("/admin/my-body", { withCredentials: true });
return response.data;
} catch (error) {
return error;
}
}

export const addTopic = async (formData) => {
try {
const response = await thaliaAPI.post("/admin/my-body", formData, { withCredentials: true });
return response.data;
} catch (error) {
return error;
}
}

export const deleteBody = async (bodyId) => {
try {
const response = await thaliaAPI.delete(`/admin/my-body/${bodyId}`, { withCredentials: true });
return response.data;
} catch (error) {
return error;
}
}

export const editBody = async (formData, bodyId) => {
try {
const response = await thaliaAPI.put(`/admin/my-body/${bodyId}`, formData);
return response.data;
} catch (error) {
console.log("error=>", error)
return error;
}
}

0 comments on commit b5e784f

Please sign in to comment.