Manage progress bars in the admin area

This commit is contained in:
Javi Martín
2019-01-04 15:10:10 +01:00
committed by decabeza
parent 4f25581636
commit c5d32c5ab9
7 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class Admin::BudgetInvestmentProgressBarsController < Admin::ProgressBarsController
private
def progressable
Budget::Investment.find(params[:budget_investment_id])
end
end