FINAL COMMIT
All checks were successful
Build and test backend / Build-backend (pull_request) Successful in 2m2s
Build and test backend / Test-backend (pull_request) Successful in 1m58s
Build and test FrontEnd / Build-frontend (pull_request) Successful in 23s

This commit is contained in:
2024-03-18 18:47:00 +01:00
parent 77ac771b8f
commit 4715441afd
8 changed files with 46 additions and 33 deletions

View File

@ -140,8 +140,9 @@ export async function getSelf(){
* - Adress
* - Password
*/
export async function alterSelf(data){
return restPatch("/user", data);
export async function alterSelf(id,data){
console.log(data)
return restPatch("/user/"+id, data);
}