Skip to content
Snippets Groups Projects
Commit 528b3d37 authored by Kyle Doherty's avatar Kyle Doherty
Browse files

Merge branch 'activity_feed' of github.com:metabase/metabase-init into activity_feed

parents 18c93e8d 407119e3
No related branches found
No related tags found
No related merge requests found
......@@ -27,22 +27,22 @@
auth/enforce-authentication)
(defroutes routes
(context "/activity" [] (+auth activity/routes))
(context "/card" [] (+auth card/routes))
(context "/dash" [] (+auth dash/routes))
(GET "/health" [] {:status 200 :body {:status "ok"}})
(context "/activity" [] (+auth activity/routes))
(context "/card" [] (+auth card/routes))
(context "/dash" [] (+auth dash/routes))
(GET "/health" [] {:status 200 :body {:status "ok"}})
(context "/meta/dataset" [] (+auth dataset/routes))
(context "/meta/db" [] (+auth db/routes))
(context "/meta/field" [] (+auth field/routes))
(context "/meta/fk" [] (+auth fk/routes))
(context "/meta/table" [] (+auth table/routes))
(context "/notify" [] (+apikey notify/routes))
(context "/revision" [] (+auth revision/routes))
(context "/session" [] session/routes)
(context "/setting" [] (+auth setting/routes))
(context "/setup" [] setup/routes)
(context "/tiles" [] (+auth tiles/routes))
(context "/user" [] (+auth user/routes))
(context "/meta/db" [] (+auth db/routes))
(context "/meta/field" [] (+auth field/routes))
(context "/meta/fk" [] (+auth fk/routes))
(context "/meta/table" [] (+auth table/routes))
(context "/notify" [] (+apikey notify/routes))
(context "/revision" [] (+auth revision/routes))
(context "/session" [] session/routes)
(context "/setting" [] (+auth setting/routes))
(context "/setup" [] setup/routes)
(context "/tiles" [] (+auth tiles/routes))
(context "/user" [] (+auth user/routes))
(route/not-found (fn [{:keys [request-method uri]}]
{:status 404
:body (str (.toUpperCase (name request-method)) " " uri " is not yet implemented.")})))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment