From 582aa952e4b43c6b93e44d2d03efd3e1c982e6ca Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 23 Apr 2026 00:30:35 +0000 Subject: [PATCH] Remove template test --- html/template/sync/template-test.html | 14 -------------- sync/dash.go | 3 --- sync/routes.go | 1 - 3 files changed, 18 deletions(-) delete mode 100644 html/template/sync/template-test.html diff --git a/html/template/sync/template-test.html b/html/template/sync/template-test.html deleted file mode 100644 index 40ac2bbc..00000000 --- a/html/template/sync/template-test.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - VueJS + TypeScript Demo - - - -
- - - - diff --git a/sync/dash.go b/sync/dash.go index 4fc0e862..bf1c835a 100644 --- a/sync/dash.go +++ b/sync/dash.go @@ -78,9 +78,6 @@ func getSource(ctx context.Context, r *http.Request, user platform.User) (*html. return html.NewResponse("sync/source.html", data), nil } -func getTemplateTest(w http.ResponseWriter, r *http.Request) { - html.RenderOrError(w, "sync/template-test.html", nil) -} func getTrap(ctx context.Context, r *http.Request, user platform.User) (*html.Response[contentTrap], *nhttp.ErrorWithStatus) { vars := mux.Vars(r) globalid_s := vars["globalid"] diff --git a/sync/routes.go b/sync/routes.go index 75f77e4f..d13fd75c 100644 --- a/sync/routes.go +++ b/sync/routes.go @@ -19,7 +19,6 @@ func Router(r *mux.Router) { // Utility endpoints r.HandleFunc("/privacy", getPrivacy) - r.HandleFunc("/template-test", getTemplateTest) //r.HandleFunc("/", getRoot) //r.HandleFunc("/_/*", getRoot)