jakji93 / airon-fitness

AIRON Fitness is an AI-powered fitness companion supporting your personal health journey by delivering customized fitness and meal plans tailored to your goals and preferences.
https://airon-fitness.onrender.com/
MIT License
4 stars 2 forks source link

prepare BE for profile image upload and update #45

Closed jakji93 closed 1 year ago

jakji93 commented 1 year ago

Prepare BE for profile image upload and update Following the article on storing image in MongoDB

Request frontend testing using the following format or equivalent to our own environment <form action="/userProfile" method="post" enctype="multipart/form-data"> <input type="file" name="image" /></form>

Image should be able to display using the following format <img src="data:<%=userProfile.profileImage.contentType%>;base64, <%=userProfile.profileImage.data.toString('base64')%>" />