From f68f1f326a196882383e534ff5166bf91b4e079d Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Sat, 31 Aug 2013 21:52:40 +0200 Subject: Jobs can now be viewed in the job editor. --- main.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main.go') diff --git a/main.go b/main.go index d8cec10..1cdccc2 100644 --- a/main.go +++ b/main.go @@ -90,6 +90,8 @@ func main() { router.HandleFunc("/pwreset", mkHttpHandler(pwreset, tplPwreset)) router.HandleFunc("/forgotpw", mkHttpHandler(forgotpw, tplForgotpw)) router.HandleFunc("/jobs", mkHttpHandler(jobs, tplJobs)) + router.HandleFunc("/jobedit", mkHttpHandler(jobedit, tplJobedit)) + router.HandleFunc("/jobedit/{ID}", mkHttpHandler(jobedit, tplJobedit)) http.Handle("/", router) -- cgit v1.2.3-54-g00ecf