This user account system allows for the registration of users using their email and password + OAuth providers. It has full email verification and password reset functionality. It uses PostgreSQL, Express, Passport, and JWT as user tokens.
MIT License
2
stars
0
forks
source link
Add support for users uploading their own avatars. #10
Add an endpoint for users to upload their own avatar. This avatar should be processed, stored (using the preferred storage method) and the avatar_url should be stored in the database. Avatars that can't be processed should not be accepted (invalid image, file too big, etc).
Add an endpoint for users to upload their own avatar. This avatar should be processed, stored (using the preferred storage method) and the
avatar_url
should be stored in the database. Avatars that can't be processed should not be accepted (invalid image, file too big, etc).