📝 docs: add documentation for bulk update thumbnail controller

This commit is contained in:
2026-02-06 22:22:49 +07:00
parent 3d3a9af9dc
commit 7f129a1b55
2 changed files with 36 additions and 1 deletions

View File

@ -8,6 +8,6 @@ import { updateAllEpisodeThumbnailController } from "./controllers/updateAllEpis
export const internalModule = new Elysia({ prefix: "/internal" })
.post("/media/bulk-insert", bulkInsertMediaController)
.post("/episode/bulk-insert", bulkInsertEpisodeController)
.post("/episode/update-thumbnails", updateAllEpisodeThumbnailController)
.put("/episode/update-thumbnails", updateAllEpisodeThumbnailController)
.post("/video/bulk-insert", bulkInsertVideoController)
.post("/video-service", createVideoServiceInternalController);