Modifying backend so it send the full entry of a file upload

This commit is contained in:
2024-03-13 22:28:59 +01:00
parent 68e55e8355
commit a0285e700d
7 changed files with 23 additions and 10 deletions

View File

@ -0,0 +1,11 @@
import { restPostFile } from '@/rest/restConsumer.js'
/**
* Upload a file to the server and return the url of this image
*/
export async function uploadProfilePicture(file){
const formData = new FormData();
formData.append("file", file[0]);
return restPostFile("/upload/ProfilePicture", formData)
}