urbanengine / UrbanEngineApi

UrbanEngineApi is a simple application built using ASP.NET Core and Entity Framework Core
Apache License 2.0
1 stars 2 forks source link

Create and Manage User #24

Open scottluskcis opened 5 years ago

scottluskcis commented 5 years ago

Will require some integration with Auth0 as some information is stored in Auth0 and some is stored in UE database.

Ability for a user account to be able to be created in the system Should also provide support to edit account

scottluskcis commented 5 years ago

@tylerbhughes please add additional details if any

codewithtyler commented 5 years ago

We will need to integrate with Auth0 and Gravatar. Auth0 will handle logins for us and will store the user's first name, last name, and e-mail for us. Auth0 will also give us what we call an Auth0 Id that we can use to associate users in our user table to the user in their system.

Currently Auth0 also uses gravatar for their profile pictures so we either need to redirect someone to Gravatar when they want to update their profile pic or we need to integrate with Gravatar and let them upload the image through out API. I like the 2nd approach best but I'm not sure what functionality Gravatar gives to developers if any