Note the user interface could certainly be improved, as it doesn't show which languages have changed.
9 lines
263 B
Ruby
9 lines
263 B
Ruby
class Admin::BudgetInvestmentAuditsController < Admin::BaseController
|
|
def show
|
|
investment = Budget::Investment.find(params[:budget_investment_id])
|
|
@audit = investment.own_and_associated_audits.find(params[:id])
|
|
|
|
render "admin/audits/show"
|
|
end
|
|
end
|