From 471fe52ecc3c581e2823c9fde36cf06000cd39c1 Mon Sep 17 00:00:00 2001 From: Bertocq Date: Wed, 28 Mar 2018 08:48:26 +0200 Subject: [PATCH] Replace deprecated `to:` for `action:` at routes Running test suite the following appears: DEPRECATION WARNING: Defining a route where `to` is a symbol is deprecated. Please change `to: :json_data` to `action: :json_data`. --- config/routes/budget.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes/budget.rb b/config/routes/budget.rb index e3a0acc16..aef2c1413 100644 --- a/config/routes/budget.rb +++ b/config/routes/budget.rb @@ -18,4 +18,4 @@ scope '/participatory_budget' do end end -get 'investments/:id/json_data', to: :json_data, controller: 'budgets/investments' +get 'investments/:id/json_data', action: :json_data, controller: 'budgets/investments'