feat(backend): create user + log in implementation #31
No reviewers
Labels
No labels
automerge
backend
bug
ci/tooling
dependencies
documentation
duplicate
enhancement
feature
frontend
good first issue
help wanted
invalid
question
research
test-dependencies
wontfix
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: marc/rotini#31
Loading…
Reference in a new issue
No description provided.
Delete branch "feat/user-implementation"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
First chunk of the user+login implementation (#29)
This adds a
users
table as well as the logic and API entrypoints to create users and validate a user (i.e. "log in", but does not actually create a auth credentials yet).This also refactors what was previously "users" (both
api.users
anduse_cases.users
) into theauth
module to start creating some order and isolation between different parts of the application.