Base for rest api utilisation #53

Merged
tonitch merged 5 commits from tonitch/front/rest_Base into master 2024-03-06 21:38:10 +01:00
Showing only changes of commit 73cc296a49 - Show all commits

View File

@ -15,6 +15,10 @@ export async function restDelete(endPoint, data) {
return await _rest(endPoint, {method: "DELETE", body: data});
}
tonitch marked this conversation as resolved
Review

pas de restPatch function ?

pas de restPatch function ?
Review

Pas encore fait parce que j'allais dormir ^^ c'est un stub (d'ou le WIP:) qui n'est pas fini mais merci pour la remarque

Pas encore fait parce que j'allais dormir ^^ c'est un stub (d'ou le WIP:) qui n'est pas fini mais merci pour la remarque
export async function restPatch(endPoint, data) {
return await _rest(endPoint, {method: "PATCH", body: data});
}
/**
* backbone for the request made by the frontend
*