Ajout URLs manquantes directement gérées par le client

This commit is contained in:
wpetit 2020-08-31 16:13:10 +02:00
parent c95fbf6915
commit bc56c9dbae
1 changed files with 2 additions and 0 deletions

View File

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