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

7 lines
199 B
Ruby

RakeControlWeb::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