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