3 Commits

Author SHA1 Message Date
e15c0a21e0 Convert Flask routes to FastAPI in anime controller
- Convert Flask Blueprint to FastAPI router
- Replace @app.route() with FastAPI route decorators (@router.get, @router.post)
- Update route parameter syntax from <int:id> to {id: int} format
- Convert Flask request object usage to FastAPI Query/Depends parameters
- Update response handling to return dicts instead of Flask jsonify()
- Integrate SeriesApp as business logic layer for anime operations
- Add anime list, search, and rescan endpoints using SeriesApp
- Include anime router in main FastAPI application
- Mark route conversion tasks as completed in web_todo.md
2025-10-05 23:05:37 +02:00
555c39d668 Mark 'Convert Flask blueprints to FastAPI routers' as completed in migration TODO 2025-10-05 22:45:41 +02:00
be5a0c0aab Mark completed FastAPI setup tasks in web migration TODO 2025-10-05 22:39:34 +02:00