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)