app/controllers/workbench_confirmations_controller.rb
# frozen_string_literal: true
class WorkbenchConfirmationsController < Chouette::ResourceController
defaults resource_class: Workbench::Confirmation, singleton: true
def create
create! do |success, _|
success.html do
workbench = @workbench_confirmation.workbench
flash[:notice] = t('.success', workbench: workbench.name, workgroup: workbench.workgroup.name)
redirect_to workbench_path workbench
end
end
end
protected
def build_resource
get_resource_ivar || set_resource_ivar(
Workbench::Confirmation.new(organisation: current_organisation, user: current_user, **resource_params[0])
)
end
def authorize_resource_class
authorize_policy(parent_policy, :workbench_confirm?, Workbench)
end
def workbench_confirmation_params
params.require(:workbench_confirmation).permit(
:invitation_code
)
end
end