1
0
Fork 0
burden/burden_web/config/routes.rb

7 lines
194 B
Ruby
Raw Normal View History

2013-06-06 18:55:21 +00:00
BurdenWeb::Engine.routes.draw do
2013-06-06 17:48:46 +00:00
resources :tasks, path: '/', only: [:index], constraints: { id: /[a-z0-9_:]+/ } do
member{ get :run }
resources :runs, only: [:index, :show]
end
2013-06-04 18:59:18 +00:00
end