algoristas / api

Algorists dashboard API
4 stars 1 forks source link

User management: Sign up #16

Open rendon opened 6 years ago

rendon commented 6 years ago

Create the necessary endpoints to create new users.

Proposed data model:

{
    "id": 1,
    "name": "Alice",
    "lastName": "Start",
    "email": "alice@algoristas.com",
    "password": "youwillneverknow--causethiswillbeencrypted",
    "externalAccounts": [
        {
            "platform": "codeforces",
            "userName": "alice"
        },
        {
            "platform": "coj",
            "userName": "alice1990"
        }
    ]
}

This information would be stored in a RDBMS using two tables, User and ExternalAcount:

datamodel