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
```
77 lines
1.7 KiB
Ruby
77 lines
1.7 KiB
Ruby
class Admin::MilestonesController < Admin::BaseController
|
|
include Translatable
|
|
include ImageAttributes
|
|
include DocumentAttributes
|
|
|
|
before_action :load_milestoneable, only: [:index, :new, :create, :edit, :update, :destroy]
|
|
before_action :load_milestone, only: [:edit, :update, :destroy]
|
|
before_action :load_statuses, only: [:index, :new, :create, :edit, :update]
|
|
helper_method :milestoneable_path
|
|
|
|
def index
|
|
end
|
|
|
|
def new
|
|
@milestone = @milestoneable.milestones.new
|
|
end
|
|
|
|
def create
|
|
@milestone = @milestoneable.milestones.new(milestone_params)
|
|
if @milestone.save
|
|
redirect_to milestoneable_path, notice: t("admin.milestones.create.notice")
|
|
else
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def update
|
|
if @milestone.update(milestone_params)
|
|
redirect_to milestoneable_path, notice: t("admin.milestones.update.notice")
|
|
else
|
|
render :edit
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@milestone.destroy!
|
|
redirect_to milestoneable_path, notice: t("admin.milestones.delete.notice")
|
|
end
|
|
|
|
private
|
|
|
|
def milestone_params
|
|
params.require(:milestone).permit(allowed_params)
|
|
end
|
|
|
|
def allowed_params
|
|
[
|
|
:publication_date, :status_id,
|
|
translation_params(Milestone),
|
|
image_attributes: image_attributes, documents_attributes: document_attributes
|
|
]
|
|
end
|
|
|
|
def load_milestoneable
|
|
@milestoneable = milestoneable
|
|
end
|
|
|
|
def milestoneable
|
|
raise "Implement in subclass"
|
|
end
|
|
|
|
def load_milestone
|
|
@milestone = @milestoneable.milestones.find(params[:id])
|
|
end
|
|
|
|
def load_statuses
|
|
@statuses = Milestone::Status.all
|
|
end
|
|
|
|
def milestoneable_path
|
|
admin_polymorphic_path(@milestone.milestoneable)
|
|
end
|
|
end
|