- POST /api/v1/auth/register with mandatory consents
- POST /api/v1/auth/login
- GET /api/v1/me (protected)
- GET /api/v1/legal/{terms,privacy,disclaimer}
- Migrations for users, consent_log, audit_log
- bcrypt + JWT (access + refresh)
- Docker Compose stack
4 lines
94 B
SQL
4 lines
94 B
SQL
DROP TABLE IF EXISTS audit_log;
|
|
DROP TABLE IF EXISTS consent_log;
|
|
DROP TABLE IF EXISTS users;
|