summaryrefslogtreecommitdiffstats
path: root/cmd/web/routes.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cmd/web/routes.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/web/routes.go b/cmd/web/routes.go
index 7e3aabd..23ecf7b 100644
--- a/cmd/web/routes.go
+++ b/cmd/web/routes.go
@@ -10,5 +10,7 @@ func (app *application) routes() *http.ServeMux {
mux.HandleFunc("/", app.home)
mux.HandleFunc("/organisation/list", app.listOrganisation)
+ mux.HandleFunc("/organisation/view", app.organisationView)
+ mux.HandleFunc("/organisation/create", app.organisationCreate)
return mux
}