Fix embeds not loading on prod builds. Closes #2186

This commit is contained in:
Gabe Kangas
2022-10-10 14:05:58 -07:00
parent 902f21b361
commit d94723bd3a
2 changed files with 0 additions and 43 deletions

View File

@@ -58,18 +58,6 @@ func Start() error {
// web config api
http.HandleFunc("/api/config", controllers.GetWebConfig)
// pre v0.0.8 chat embed
http.HandleFunc("/embed/chat", controllers.GetChatEmbedreadonly)
// readonly chat embed
http.HandleFunc("/embed/chat/readonly", controllers.GetChatEmbedreadonly)
// readwrite chat embed
http.HandleFunc("/embed/chat/readwrite", controllers.GetChatEmbedreadwrite)
// video embed
http.HandleFunc("/embed/video", controllers.GetVideoEmbed)
// return the YP protocol data
http.HandleFunc("/api/yp", yp.GetYPResponse)