diff options
Diffstat (limited to 'cmd/web/routes.go')
-rw-r--r-- | cmd/web/routes.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/web/routes.go b/cmd/web/routes.go index e21b25d..d23855a 100644 --- a/cmd/web/routes.go +++ b/cmd/web/routes.go @@ -9,7 +9,7 @@ func (app *application) routes() *http.ServeMux { mux.Handle("/static/", http.StripPrefix("/static", fileServer)) mux.HandleFunc("/", app.home) - mux.HandleFunc("/organisation/list", app.listOrganisation) + mux.HandleFunc("/organisation/list", app.listOrganisations) mux.HandleFunc("/organisation/view", app.organisationView) mux.HandleFunc("/organisation/create", app.organisationCreate) mux.HandleFunc("/operation/list", app.listOperations) |