1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-18 01:57:02 +00:00

Rename about page to status

This commit is contained in:
James Hillyerd
2012-10-24 09:48:56 -07:00
parent bf0d6a6be5
commit 606fb124a6
4 changed files with 11 additions and 9 deletions

View File

@@ -10,8 +10,8 @@ func RootIndex(w http.ResponseWriter, req *http.Request, ctx *Context) (err erro
})
}
func RootAbout(w http.ResponseWriter, req *http.Request, ctx *Context) (err error) {
return RenderTemplate("root/about.html", w, map[string]interface{}{
func RootStatus(w http.ResponseWriter, req *http.Request, ctx *Context) (err error) {
return RenderTemplate("root/status.html", w, map[string]interface{}{
"ctx": ctx,
})
}