From 8cd1a0ce02bc1e5ca172bf95807508c97458012b Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 9 Feb 2026 21:52:11 +0000 Subject: [PATCH] Fix setting page URL --- sync/routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync/routes.go b/sync/routes.go index 29f39460..e91a3b60 100644 --- a/sync/routes.go +++ b/sync/routes.go @@ -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))