From bc56c9dbaed79fa1a2fdbd8abc488d0d67b0eca6 Mon Sep 17 00:00:00 2001 From: William Petit Date: Mon, 31 Aug 2020 16:13:10 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20URLs=20manquantes=20directement=20g?= =?UTF-8?q?=C3=A9r=C3=A9es=20par=20le=20client?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/route/mount.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/route/mount.go b/internal/route/mount.go index 650cf06..aa8109a 100644 --- a/internal/route/mount.go +++ b/internal/route/mount.go @@ -72,6 +72,8 @@ func Mount(r *chi.Mux, config *config.Config) error { // List of paths handled directly by the client r.Get("/workgroups/*", serveClientIndex) r.Get("/profile", serveClientIndex) + r.Get("/dashboard", serveClientIndex) + r.Get("/decisions/*", serveClientIndex) // Serve static files notFoundHandler := r.NotFoundHandler()