fix: ajouter route /nothing/ au ui

Certains boutons appelent cette page pour clearer un div, ça marche sans
cette route mais ça call une erreur dans la console.
This commit is contained in:
Victor Lacasse-Beaudoin 2025-03-13 17:58:41 -04:00
parent 54f1c78b8b
commit 7bb4a6356c

View file

@ -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))