Gregory Eremin 04a9f70b26 Branding
2013-06-06 22:55:21 +04:00

7 lines
194 B
Ruby

BurdenWeb::Engine.routes.draw do
resources :tasks, path: '/', only: [:index], constraints: { id: /[a-z0-9_:]+/ } do
member{ get :run }
resources :runs, only: [:index, :show]
end
end