Files
nairobi/app/controllers/concerns/admin/budget_phases_actions.rb
2021-11-05 16:40:36 +01:00

48 lines
1.1 KiB
Ruby

module Admin::BudgetPhasesActions
extend ActiveSupport::Concern
included do
include Translatable
include ImageAttributes
before_action :load_budget
before_action :load_phase, only: [:edit, :update, :toggle_enabled]
end
def edit
end
def update
if @phase.update(budget_phase_params)
redirect_to phases_index, notice: t("flash.actions.save_changes.notice")
else
render :edit
end
end
def toggle_enabled
@phase.update!(enabled: !@phase.enabled)
respond_to do |format|
format.html { redirect_to phases_index, notice: t("flash.actions.save_changes.notice") }
format.js
end
end
private
def load_budget
@budget = Budget.find_by_slug_or_id!(params[:budget_id])
end
def load_phase
@phase = @budget.phases.find(params[:id])
end
def budget_phase_params
valid_attributes = [:starts_at, :ends_at, :enabled,
image_attributes: image_attributes]
params.require(:budget_phase).permit(*valid_attributes, translation_params(Budget::Phase))
end
end