* Introduce ProfileFieldGroup model * Make profile_fields_groups name column unique * Fix some specs * feat: allow the page to work again * Add guard clause to data update script * Remove unused file * Fix specs * Add foreign key Co-authored-by: Ridhwana <ridhwana.khan16@gmail.com>
53 lines
1.5 KiB
Ruby
53 lines
1.5 KiB
Ruby
module Admin
|
|
class ProfileFieldsController < Admin::ApplicationController
|
|
ALLOWED_PARAMS = %i[
|
|
input_type label active placeholder_text description group
|
|
].freeze
|
|
layout "admin"
|
|
|
|
def index
|
|
@grouped_profile_fields = ProfileFieldGroup.all.includes(:profile_fields)
|
|
end
|
|
|
|
def update
|
|
profile_field = ProfileField.find(params[:id])
|
|
if profile_field.update(profile_field_params)
|
|
flash[:success] = "Profile field #{profile_field.label} updated"
|
|
else
|
|
flash[:error] = "Error: #{profile_field.errors_as_sentence}"
|
|
end
|
|
redirect_to admin_profile_fields_path
|
|
end
|
|
|
|
def create
|
|
add_result = ProfileFields::Add.call(profile_field_params)
|
|
if add_result.success?
|
|
profile_field = add_result.profile_field
|
|
flash[:success] = "Profile field #{profile_field.label} created"
|
|
else
|
|
flash[:error] = "Error: #{add_result.error_message}"
|
|
end
|
|
redirect_to admin_profile_fields_path
|
|
end
|
|
|
|
def destroy
|
|
remove_result = ProfileFields::Remove.call(params[:id])
|
|
if remove_result.success?
|
|
profile_field = remove_result.profile_field
|
|
flash[:success] = "Profile field #{profile_field.label} deleted"
|
|
else
|
|
flash[:error] = "Error: #{remove_result.error_message}"
|
|
end
|
|
redirect_to admin_profile_fields_path
|
|
end
|
|
|
|
private
|
|
|
|
private_constant :ALLOWED_PARAMS
|
|
|
|
def profile_field_params
|
|
allowed_params = ALLOWED_PARAMS
|
|
params.require(:profile_field).permit(allowed_params)
|
|
end
|
|
end
|
|
end
|