aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-12-03 05:28:29 +0900
committernsfisis <nsfisis@gmail.com>2025-12-04 23:26:25 +0900
commit950217ed3ca93a0aa0e964c2a8474ffc13c71912 (patch)
treef5a8575a74aa8203a8fd49846ab859670009ffd7 /docs
parent7e75e0fa8f26a7890c210c67e4474778811b15bc (diff)
downloadkioku-950217ed3ca93a0aa0e964c2a8474ffc13c71912.tar.gz
kioku-950217ed3ca93a0aa0e964c2a8474ffc13c71912.tar.zst
kioku-950217ed3ca93a0aa0e964c2a8474ffc13c71912.zip
feat(auth): add user registration endpoint
Implement POST /api/auth/register endpoint with: - Argon2 password hashing - Zod validation for username (1-255 chars) and password (8-255 chars) - Duplicate username check (returns 409 Conflict) - Returns created user with id, username, and createdAt 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/dev/roadmap.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/roadmap.md b/docs/dev/roadmap.md
index 57fdaed..bce7a54 100644
--- a/docs/dev/roadmap.md
+++ b/docs/dev/roadmap.md
@@ -27,7 +27,7 @@
- [x] Zod validation schemas
### Authentication
-- [ ] User registration endpoint
+- [x] User registration endpoint
- [ ] Login endpoint (JWT)
- [ ] Refresh token endpoint
- [ ] Auth middleware