diff options
Diffstat (limited to '')
-rw-r--r-- | cmd/web/routes.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/web/routes.go b/cmd/web/routes.go index 23ecf7b..e21b25d 100644 --- a/cmd/web/routes.go +++ b/cmd/web/routes.go @@ -12,5 +12,6 @@ func (app *application) routes() *http.ServeMux { mux.HandleFunc("/organisation/list", app.listOrganisation) mux.HandleFunc("/organisation/view", app.organisationView) mux.HandleFunc("/organisation/create", app.organisationCreate) + mux.HandleFunc("/operation/list", app.listOperations) return mux } |