tonitch/front/User_API #56

Merged
tonitch merged 9 commits from tonitch/front/User_API into master 2024-03-07 14:12:50 +01:00
Showing only changes of commit 1f69040436 - Show all commits

View File

@ -15,6 +15,10 @@ export async function restDelete(endPoint, data) {
return await _rest(endPoint, {method: "DELETE", body: data});
}
export async function restPatch(endPoint, data) {
return await _rest(endPoint, {method: "PATCH", body: data});
}
/**
* backbone for the request made by the frontend
*