From b965d9432b4037dd2f65bb4c8690965e090228ca Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 7 Dec 2025 18:44:05 +0900 Subject: feat(server): add study session API with FSRS integration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Implement study endpoints for spaced repetition learning: - GET /api/decks/:deckId/study to fetch due cards - POST /api/decks/:deckId/study/:cardId to submit reviews - Integrate ts-fsrs library for scheduling algorithm - Add ReviewLog repository for tracking review history 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/server/routes/index.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'src/server/routes/index.ts') diff --git a/src/server/routes/index.ts b/src/server/routes/index.ts index 009f2c3..e702044 100644 --- a/src/server/routes/index.ts +++ b/src/server/routes/index.ts @@ -1,3 +1,4 @@ export { auth } from "./auth.js"; export { cards } from "./cards.js"; export { decks } from "./decks.js"; +export { study } from "./study.js"; -- cgit v1.2.3-70-g09d2