Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit d6b496d

Browse files
authored
chore: allow upgrade ui in embed mode (#1692)
1 parent 5a24efd commit d6b496d

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

hub/route/server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ func router(isDebug bool, secret string, dohServer string, cors Cors) *chi.Mux {
127127
r.Mount("/providers/rules", ruleProviderRouter())
128128
r.Mount("/cache", cacheRouter())
129129
r.Mount("/dns", dnsRouter())
130-
if !embedMode { // disallow restart and upgrade in embed mode
130+
if !embedMode { // disallow restart in embed mode
131131
r.Mount("/restart", restartRouter())
132-
r.Mount("/upgrade", upgradeRouter())
133132
}
133+
r.Mount("/upgrade", upgradeRouter())
134134
addExternalRouters(r)
135135

136136
})

hub/route/upgrade.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ import (
1414

1515
func upgradeRouter() http.Handler {
1616
r := chi.NewRouter()
17-
r.Post("/", upgradeCore)
1817
r.Post("/ui", updateUI)
19-
r.Post("/geo", updateGeoDatabases)
18+
if !embedMode { // disallow upgrade core/geo in embed mode
19+
r.Post("/", upgradeCore)
20+
r.Post("/geo", updateGeoDatabases)
21+
}
2022
return r
2123
}
2224

0 commit comments

Comments
 (0)