Add batch endpoint for removing downloads from download queue (#452)

This commit is contained in:
Valter Martinek
2022-11-16 17:31:48 +01:00
committed by GitHub
parent 67e09e2e1d
commit d6127d6811
3 changed files with 31 additions and 0 deletions

View File

@@ -134,6 +134,28 @@ object DownloadController {
}
)
/** delete multiple chapters from download queue */
val unqueueChapters = handler(
documentWith = {
withOperation {
summary("Downloader remove multiple downloads")
description("Remove multiple chapters downloads from queue")
}
body<EnqueueInput>()
},
behaviorOf = { ctx ->
val input = json.decodeFromString<EnqueueInput>(ctx.body())
ctx.future(
future {
DownloadManager.unqueue(input)
}
)
},
withResults = {
httpCode(HttpCode.OK)
}
)
/** delete chapter from download queue */
val unqueueChapter = handler(
pathParam<Int>("chapterIndex"),