Make it so the playground can decide which index file to serve. (#223)

* Make it so the playground can decide which index file to serve.
Also remove special index-nw.html and use the current playground config to
decide if to show the windows instances option or not.

* Give a better name to the struct
This commit is contained in:
Jonathan Leibiusky
2017-11-22 16:47:01 -03:00
committed by Marcos Nils
parent 2e039a4e60
commit f277e3776c
7 changed files with 43 additions and 317 deletions

View File

@@ -77,6 +77,7 @@ func Register(extend HandlerExtender) {
r.HandleFunc("/oauth/providers/{provider}/callback", LoginCallback).Methods("GET")
r.HandleFunc("/playgrounds", NewPlayground).Methods("PUT")
r.HandleFunc("/playgrounds", ListPlaygrounds).Methods("GET")
r.HandleFunc("/my/playground", GetCurrentPlayground).Methods("GET")
corsRouter.HandleFunc("/", NewSession).Methods("POST")