Block a user
Add auth endpoints
thinking about how to accomplish Sign In With Twitch.
we probably want email addresses so we can communicate with people regarding account actions, breaking changes, security breaches, &c. we…
WIP: auth
w/b this kind of thing
CREATE TABLE session(
"token" BYTEA PRIMARY KEY NOT NULL,
"user_id" UUID NOT NULL REFERENCES user_data("id"),
"expires" TIMESTAMP NOT NULL,
…