mirror of
https://github.com/danog/code-server.git
synced 2025-01-22 13:31:16 +01:00
Use query variable to force update check
This commit is contained in:
parent
a653b93ce2
commit
c5ce365482
@ -12,19 +12,8 @@ router.use((req, _, next) => {
|
||||
next()
|
||||
})
|
||||
|
||||
router.get("/", async (_, res) => {
|
||||
const update = await provider.getUpdate()
|
||||
res.json({
|
||||
checked: update.checked,
|
||||
latest: update.version,
|
||||
current: version,
|
||||
isLatest: provider.isLatestVersion(update),
|
||||
})
|
||||
})
|
||||
|
||||
// This route will force a check.
|
||||
router.get("/check", async (_, res) => {
|
||||
const update = await provider.getUpdate(true)
|
||||
router.get("/", async (req, res) => {
|
||||
const update = await provider.getUpdate(req.query.force === "true")
|
||||
res.json({
|
||||
checked: update.checked,
|
||||
latest: update.version,
|
||||
|
Loading…
x
Reference in New Issue
Block a user