From 7bb4a6356c6349aebdb8a4b89cb70fcf376bca89 Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Thu, 13 Mar 2025 17:58:41 -0400 Subject: [PATCH] fix: ajouter route /nothing/ au ui MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Certains boutons appelent cette page pour clearer un div, ça marche sans cette route mais ça call une erreur dans la console. --- server.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server.go b/server.go index a9a4117..b27a5de 100644 --- a/server.go +++ b/server.go @@ -5,6 +5,7 @@ import ( "crypto/subtle" "fmt" "log" + "net/http" "git.agecem.com/bottin/agendas/ui" "git.agecem.com/bottin/bottin/v10/pkg/bottin" @@ -63,6 +64,7 @@ func RunServer(ctx context.Context, cfg Config, bottinClient *bottin.APIClient, ) e.GET("/", UIIndex(ctx, bottinClient, dbClient)) + e.GET("/nothing/", func(c echo.Context) error { return c.NoContent(http.StatusOK) }) //e.GET("/transaction/", UIReadTransaction e.POST("/transaction/", UICreateTransaction(ctx, cfg, bottinClient, dbClient))