This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
173 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters