adds valuation namespace

This commit is contained in:
Juanjo Bazán
2016-03-04 17:39:56 +01:00
parent cd58ae85f8
commit 0160ed816c
4 changed files with 27 additions and 0 deletions

View File

@@ -208,6 +208,16 @@ Rails.application.routes.draw do
end
end
namespace :valuation do
root to: "spending_proposals#index"
resources :spending_proposals, only: [:index, :show] do
member do
patch :valuate
end
end
end
namespace :management do
root to: "dashboard#index"