This commit is contained in:
Gregory Eremin
2013-06-06 22:55:21 +04:00
parent 971ef5e530
commit 04a9f70b26
85 changed files with 115 additions and 137 deletions
+6
View File
@@ -0,0 +1,6 @@
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