From a95fb7510346ae515fb323792a573bf03966dc3f Mon Sep 17 00:00:00 2001 From: rgarcia Date: Sun, 21 Feb 2016 20:57:24 +0100 Subject: [PATCH] adds participatory_budget scope --- config/routes.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 3d07e0ec5..a25e2cf9e 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -66,7 +66,9 @@ Rails.application.routes.draw do end end - resources :spending_proposals, only: [:index, :new, :create, :show] + scope '/participatory_budget' do + resources :spending_proposals, only: [:index, :new, :create, :show] + end resources :stats, only: [:index]