Only adds route to `/events` if Activity Panel is enabled

This commit is contained in:
Deluan 2020-12-09 15:33:37 -05:00
parent 350f1dc951
commit a74b365feb
1 changed files with 3 additions and 1 deletions

View File

@ -71,7 +71,9 @@ func (app *Router) routes(path string) http.Handler {
// Keepalive endpoint to be used to keep the session valid (ex: while playing songs)
r.Get("/keepalive/*", func(w http.ResponseWriter, r *http.Request) { _, _ = w.Write([]byte(`{"response":"ok"}`)) })
r.Handle("/events", app.broker)
if conf.Server.DevActivityPanel {
r.Handle("/events", app.broker)
}
})
// Serve UI app assets