When customizing CONSUL, one of the most common actions is adding a new
field to a form.
This requires modifying the permitted/allowed parameters. However, in
most cases, the method returning these parameters returned an instance
of `ActionController::Parameters`, so adding more parameters to it
wasn't easy.
So customizing the code required copying the method returning those
parameters and adding the new ones. For example:
```
def something_params
params.require(:something).permit(
:one_consul_attribute,
:another_consul_attribute,
:my_custom_attribute
)
end
```
This meant that, if the `something_params` method changed in CONSUL, the
customization of this method had to be updated as well.
So we're extracting the logic returning the parameters to a method which
returns an array. Now this code can be customized without copying the
original method:
```
alias_method :consul_allowed_params, :allowed_params
def allowed_params
consul_allowed_params + [:my_custom_attribute]
end
```
46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
class Legislation::AnswersController < Legislation::BaseController
|
|
before_action :authenticate_user!
|
|
before_action :verify_resident!
|
|
|
|
load_and_authorize_resource :process
|
|
load_and_authorize_resource :question, through: :process
|
|
load_and_authorize_resource :answer, through: :question
|
|
|
|
respond_to :html, :js
|
|
|
|
def create
|
|
if @process.debate_phase.open?
|
|
@answer.user = current_user
|
|
@answer.save!
|
|
track_event
|
|
respond_to do |format|
|
|
format.js
|
|
format.html { redirect_to legislation_process_question_path(@process, @question) }
|
|
end
|
|
else
|
|
alert = t("legislation.questions.participation.phase_not_open")
|
|
respond_to do |format|
|
|
format.js { render json: {}, status: :not_found }
|
|
format.html { redirect_to legislation_process_question_path(@process, @question), alert: alert }
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def answer_params
|
|
params.require(:legislation_answer).permit(allowed_params)
|
|
end
|
|
|
|
def allowed_params
|
|
[:legislation_question_option_id]
|
|
end
|
|
|
|
def track_event
|
|
ahoy.track :legislation_answer_created,
|
|
legislation_answer_id: @answer.id,
|
|
legislation_question_option_id: @answer.legislation_question_option_id,
|
|
legislation_question_id: @answer.legislation_question_id
|
|
end
|
|
end
|