AyuntamientoMadrid/participacion

View on GitHub
config/routes/valuation.rb

Summary

Maintainability
A
0 mins
Test Coverage
namespace :valuation do
  root to: "budgets#index"

  resources :budgets, only: :index do
    resources :budget_investments, only: [:index, :show, :edit] do
      patch :valuate, on: :member
    end
  end
end