docbrown/app/controllers/admin/profile_field_groups_controller.rb
Anna Buianova 784afdf41e
Routine rubocop fixes (#19254)
* Rubocop fixes

* Rubocop fixes

* Fixed rubocop violation

* Fixed policies rubocop violations

* More rubocop fixes
2023-03-24 14:37:44 +03:00

53 lines
1.7 KiB
Ruby

module Admin
class ProfileFieldGroupsController < Admin::ApplicationController
ALLOWED_PARAMS = %i[
name description
].freeze
layout "admin"
def create
profile_field_group = ProfileFieldGroup.new(profile_field_group_params)
if profile_field_group.save
flash[:success] =
I18n.t("admin.profile_field_groups_controller.created",
group: profile_field_group.name)
else
flash[:error] = I18n.t("errors.messages.general", errors: profile_field_group.errors_as_sentence)
end
redirect_to admin_profile_fields_path
end
def update
profile_field_group = ProfileFieldGroup.find(params[:id])
if profile_field_group.update(profile_field_group_params)
flash[:success] =
I18n.t("admin.profile_field_groups_controller.updated",
group: profile_field_group.name)
else
flash[:error] = I18n.t("errors.messages.general", errors: profile_field_group.errors_as_sentence)
end
redirect_to admin_profile_fields_path
end
def destroy
profile_field_group = ProfileFieldGroup.find(params[:id])
if profile_field_group.destroy
flash[:success] =
I18n.t("admin.profile_field_groups_controller.deleted",
group: profile_field_group.name)
else
flash[:error] = I18n.t("errors.messages.general", errors: profile_field_group.errors_as_sentence)
end
redirect_to admin_profile_fields_path
end
private
private_constant :ALLOWED_PARAMS
def profile_field_group_params
allowed_params = ALLOWED_PARAMS
params.require(:profile_field_group).permit(allowed_params)
end
end
end