Expose path used to get to console to console.

Change-Id: I72386a2d4e53863da302ecc5c7e44d6c310197e0
This commit is contained in:
Brian Brazil 2014-07-24 16:57:56 +01:00 committed by Bjoern Rabenstein
parent aed1d384a9
commit eba205fcac

View file

@ -61,9 +61,11 @@ func (h *ConsolesHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
data := struct {
RawParams url.Values
Params map[string]string
Path string
}{
RawParams: rawParams,
Params: params,
Path: r.URL.Path,
}
template := templates.NewTemplateExpander(string(text), "__console_"+r.URL.Path, data, clientmodel.Now(), h.Storage)