Remove non-existent action in management routes

This commit is contained in:
Javi Martín
2023-07-02 01:29:30 +02:00
parent 1d7a269408
commit 62304b50e0

View File

@@ -38,7 +38,7 @@ namespace :management do
get :print_investments
end
resources :investments, only: [:index, :new, :create, :show, :destroy], controller: "budgets/investments" do
resources :investments, only: [:index, :new, :create, :show], controller: "budgets/investments" do
get :print, on: :collection
resources :votes, controller: "budgets/investments/votes", only: [:create, :destroy]