mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2024-12-25 16:21:50 +01:00
use the correct endpoint
This commit is contained in:
parent
f502884fdd
commit
b0e90c2f63
@ -327,7 +327,11 @@ object JavalinSetup {
|
|||||||
|
|
||||||
// expects a Tachiyomi legacy backup file to be uploaded
|
// expects a Tachiyomi legacy backup file to be uploaded
|
||||||
app.get("/api/v1/backup/legacy/import") { ctx ->
|
app.get("/api/v1/backup/legacy/import") { ctx ->
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
// returns a Tachiyomi legacy backup file created from the current database
|
||||||
|
app.get("/api/v1/backup/legacy/export") { ctx ->
|
||||||
ctx.contentType("application/json")
|
ctx.contentType("application/json")
|
||||||
ctx.result(
|
ctx.result(
|
||||||
future {
|
future {
|
||||||
@ -343,11 +347,5 @@ object JavalinSetup {
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
// returns a Tachiyomi legacy backup file created from the current database
|
|
||||||
app.get("/api/v1/backup/legacy/export") { ctx ->
|
|
||||||
val categoryId = ctx.pathParam("categoryId").toInt()
|
|
||||||
ctx.json(getCategoryMangaList(categoryId))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user