feat: support fetching "currently watching" titles when logging in

This commit is contained in:
2024-09-20 00:06:22 -04:00
parent 079a9402e4
commit 432da61aec
6 changed files with 281 additions and 3 deletions

View File

@@ -37,6 +37,10 @@ app.route(
"/token",
await import("~/controllers/token").then((controller) => controller.default),
);
app.route(
"/auth",
await import("~/controllers/auth").then((controller) => controller.default),
);
app.route(
"/internal",
await import("~/controllers/internal").then(