aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/dev/roadmap.md
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-12-03 05:34:44 +0900
committernsfisis <nsfisis@gmail.com>2025-12-04 23:26:27 +0900
commit742c3e55b08b37d0eb031f72a6d952bc7b7164b3 (patch)
tree119f091be511a9d870815fed9a1b98b86d638376 /docs/dev/roadmap.md
parent950217ed3ca93a0aa0e964c2a8474ffc13c71912 (diff)
downloadkioku-742c3e55b08b37d0eb031f72a6d952bc7b7164b3.tar.gz
kioku-742c3e55b08b37d0eb031f72a6d952bc7b7164b3.tar.zst
kioku-742c3e55b08b37d0eb031f72a6d952bc7b7164b3.zip
feat(auth): add login endpoint with JWT
Implement POST /api/auth/login endpoint that validates credentials and returns a JWT access token on successful authentication. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'docs/dev/roadmap.md')
-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 bce7a54..da81475 100644
--- a/docs/dev/roadmap.md
+++ b/docs/dev/roadmap.md
@@ -28,7 +28,7 @@
### Authentication
- [x] User registration endpoint
-- [ ] Login endpoint (JWT)
+- [x] Login endpoint (JWT)
- [ ] Refresh token endpoint
- [ ] Auth middleware
- [ ] Add tests