JBennyHuang / ecosort

0 stars 0 forks source link

Create new user in DB for every new authentication #17

Closed JBennyHuang closed 1 month ago

JBennyHuang commented 1 month ago

Define a user schema Research a way to trigger a user creation when they authenticate for the first time

Blocked by:

JBennyHuang commented 1 month ago

Preliminary user schema

interface {
  name: string;
  rank: string;
  badges: string[];
}
JBennyHuang commented 1 month ago

Use API connectors on authentication user flows to call an API endpoint

API endpoint could be an Azure Functions