From 67e09e2e1d452e041c46a334f1b473f38c5fc25b Mon Sep 17 00:00:00 2001 From: Aria Moradi Date: Tue, 15 Nov 2022 15:46:02 +0330 Subject: [PATCH] make chapters endpoint more unifrom --- server/src/main/kotlin/suwayomi/tachidesk/manga/MangaAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main/kotlin/suwayomi/tachidesk/manga/MangaAPI.kt b/server/src/main/kotlin/suwayomi/tachidesk/manga/MangaAPI.kt index ca445c0a..5736f7fd 100644 --- a/server/src/main/kotlin/suwayomi/tachidesk/manga/MangaAPI.kt +++ b/server/src/main/kotlin/suwayomi/tachidesk/manga/MangaAPI.kt @@ -79,7 +79,7 @@ object MangaAPI { get("{mangaId}/chapter/{chapterIndex}/page/{index}", MangaController.pageRetrieve) } - path("chapters") { + path("chapter") { post("batch", MangaController.anyChapterBatch) }