Fix setting page URL

This commit is contained in:
Eli Ribble 2026-02-09 21:52:11 +00:00
parent fe53a6ca2c
commit 8cd1a0ce02
No known key found for this signature in database

View file

@ -65,7 +65,7 @@ func Router() chi.Router {
r.Method("GET", "/pool/upload", auth.NewEnsureAuth(getPoolUpload))
r.Method("GET", "/pool/upload/{id}", auth.NewEnsureAuth(getPoolUploadByID))
r.Method("POST", "/pool/upload", auth.NewEnsureAuth(postPoolUpload))
r.Method("GET", "/settings", auth.NewEnsureAuth(getSettings))
r.Method("GET", "/setting", auth.NewEnsureAuth(getSettings))
r.Method("GET", "/signout", auth.NewEnsureAuth(getSignout))
r.Method("GET", "/source/{globalid}", auth.NewEnsureAuth(getSource))
r.Method("GET", "/trap/{globalid}", auth.NewEnsureAuth(getTrap))