Add batch chapter update endpoint (#442)

This commit is contained in:
Valter Martinek
2022-11-09 18:13:29 +01:00
committed by GitHub
parent 2f3f47c745
commit 39490ce7ba
3 changed files with 75 additions and 6 deletions

View File

@@ -66,6 +66,7 @@ object MangaAPI {
patch("{mangaId}/meta", MangaController.meta)
get("{mangaId}/chapters", MangaController.chapterList)
post("{mangaId}/chapter/batch", MangaController.chapterBatch)
get("{mangaId}/chapter/{chapterIndex}", MangaController.chapterRetrieve)
patch("{mangaId}/chapter/{chapterIndex}", MangaController.chapterModify)
delete("{mangaId}/chapter/{chapterIndex}", MangaController.chapterDelete)