Merge branch 'develop' into dist/ubuntu/bionic/develop

This commit is contained in:
2020-08-31 16:13:33 +02:00

View File

@ -72,6 +72,8 @@ func Mount(r *chi.Mux, config *config.Config) error {
// List of paths handled directly by the client // List of paths handled directly by the client
r.Get("/workgroups/*", serveClientIndex) r.Get("/workgroups/*", serveClientIndex)
r.Get("/profile", serveClientIndex) r.Get("/profile", serveClientIndex)
r.Get("/dashboard", serveClientIndex)
r.Get("/decisions/*", serveClientIndex)
// Serve static files // Serve static files
notFoundHandler := r.NotFoundHandler() notFoundHandler := r.NotFoundHandler()