changed urls
This commit is contained in:
@@ -75,14 +75,17 @@ export const rmFromRemove = (itemID: number) => {
|
|||||||
|
|
||||||
export const createLoan = async (startDate: string, endDate: string) => {
|
export const createLoan = async (startDate: string, endDate: string) => {
|
||||||
const items = removeArr;
|
const items = removeArr;
|
||||||
const response = await fetch("https://backend.insta.the1s.de/api/createLoan", {
|
const response = await fetch(
|
||||||
method: "POST",
|
"https://backend.insta.the1s.de/api/createLoan",
|
||||||
headers: {
|
{
|
||||||
"Content-Type": "application/json",
|
method: "POST",
|
||||||
Authorization: `Bearer ${Cookies.get("token") || ""}`,
|
headers: {
|
||||||
},
|
"Content-Type": "application/json",
|
||||||
body: JSON.stringify({ items, startDate, endDate }),
|
Authorization: `Bearer ${Cookies.get("token") || ""}`,
|
||||||
});
|
},
|
||||||
|
body: JSON.stringify({ items, startDate, endDate }),
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
myToast("Fehler beim Erstellen der Ausleihe", "error");
|
myToast("Fehler beim Erstellen der Ausleihe", "error");
|
||||||
@@ -103,7 +106,7 @@ export const createLoan = async (startDate: string, endDate: string) => {
|
|||||||
|
|
||||||
export const onReturn = async (loanID: number) => {
|
export const onReturn = async (loanID: number) => {
|
||||||
const response = await fetch(
|
const response = await fetch(
|
||||||
`http://localhost:8002/api/returnLoan/${loanID}`,
|
`https://backend.insta.the1s.de/returnLoan/${loanID}`,
|
||||||
{
|
{
|
||||||
method: "POST",
|
method: "POST",
|
||||||
headers: {
|
headers: {
|
||||||
@@ -122,12 +125,15 @@ export const onReturn = async (loanID: number) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const onTake = async (loanID: number) => {
|
export const onTake = async (loanID: number) => {
|
||||||
const response = await fetch(`http://localhost:8002/api/takeLoan/${loanID}`, {
|
const response = await fetch(
|
||||||
method: "POST",
|
`https://backend.insta.the1s.de/takeLoan/${loanID}`,
|
||||||
headers: {
|
{
|
||||||
Authorization: `Bearer ${Cookies.get("token") || ""}`,
|
method: "POST",
|
||||||
},
|
headers: {
|
||||||
});
|
Authorization: `Bearer ${Cookies.get("token") || ""}`,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
myToast("Fehler beim Ausleihen der Ausleihe", "error");
|
myToast("Fehler beim Ausleihen der Ausleihe", "error");
|
||||||
|
Reference in New Issue
Block a user