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
|