mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-04 11:24:35 -05:00
separate Global API
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package suwayomi.tachidesk.global
|
||||
|
||||
import io.javalin.Javalin
|
||||
import suwayomi.tachidesk.global.impl.About
|
||||
|
||||
/*
|
||||
* Copyright (C) Contributors to the Suwayomi project
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||
|
||||
object GlobalAPI {
|
||||
fun defineEndpoints(app: Javalin) {
|
||||
// returns some static info about the current app build
|
||||
app.get("/api/v1/settings/about/") { ctx ->
|
||||
ctx.json(About.getAbout())
|
||||
}
|
||||
|
||||
// TODO: app update check api
|
||||
app.get("/api/v1/settings/check-update/") { ctx ->
|
||||
ctx.json(About.getAbout())
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user