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
```
54 lines
1.7 KiB
Ruby
54 lines
1.7 KiB
Ruby
class Admin::Legislation::DraftVersionsController < Admin::Legislation::BaseController
|
|
include Translatable
|
|
|
|
load_and_authorize_resource :draft_version, class: "Legislation::DraftVersion", through: :process, prepend: true
|
|
load_and_authorize_resource :process, class: "Legislation::Process", prepend: true
|
|
|
|
def index
|
|
@draft_versions = @process.draft_versions
|
|
end
|
|
|
|
def create
|
|
if @draft_version.save
|
|
link = legislation_process_draft_version_path(@process, @draft_version)
|
|
notice = t("admin.legislation.draft_versions.create.notice", link: link)
|
|
redirect_to admin_legislation_process_draft_versions_path, notice: notice
|
|
else
|
|
flash.now[:error] = t("admin.legislation.draft_versions.create.error")
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def update
|
|
if @draft_version.update(draft_version_params)
|
|
link = legislation_process_draft_version_path(@process, @draft_version)
|
|
notice = t("admin.legislation.draft_versions.update.notice", link: link)
|
|
edit_path = edit_admin_legislation_process_draft_version_path(@process, @draft_version)
|
|
redirect_to edit_path, notice: notice
|
|
else
|
|
flash.now[:error] = t("admin.legislation.draft_versions.update.error")
|
|
render :edit
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@draft_version.destroy!
|
|
notice = t("admin.legislation.draft_versions.destroy.notice")
|
|
redirect_to admin_legislation_process_draft_versions_path, notice: notice
|
|
end
|
|
|
|
private
|
|
|
|
def draft_version_params
|
|
params.require(:legislation_draft_version).permit(allowed_params)
|
|
end
|
|
|
|
def allowed_params
|
|
[:status, :final_version, translation_params(Legislation::DraftVersion)]
|
|
end
|
|
|
|
def resource
|
|
@draft_version
|
|
end
|
|
end
|