7 lines
194 B
Ruby
Raw Normal View History

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