mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
51 lines
1.3 KiB
Ruby
51 lines
1.3 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# API Controller for resources of type ProfileCustomField
|
||
|
# ProfileCustomFields are used to provide admin config user profile custom fields
|
||
|
class API::ProfileCustomFieldsController < API::ApiController
|
||
|
before_action :authenticate_user!, except: :index
|
||
|
before_action :set_profile_custom_field, only: %i[show update destroy]
|
||
|
|
||
|
def index
|
||
|
@profile_custom_fields = ProfileCustomField.all.order('id ASC')
|
||
|
end
|
||
|
|
||
|
def show; end
|
||
|
|
||
|
def create
|
||
|
authorize ProofOfIdentityType
|
||
|
@profile_custom_field = ProfileCustomField.new(profile_custom_field_params)
|
||
|
if @profile_custom_field.save
|
||
|
render status: :created
|
||
|
else
|
||
|
render json: @profile_custom_field.errors.full_messages, status: :unprocessable_entity
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def update
|
||
|
authorize @profile_custom_field
|
||
|
|
||
|
if @profile_custom_field.update(profile_custom_field_params)
|
||
|
render status: :ok
|
||
|
else
|
||
|
render json: @pack.errors.full_messages, status: :unprocessable_entity
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def destroy
|
||
|
authorize @profile_custom_field
|
||
|
@profile_custom_field.destroy
|
||
|
head :no_content
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def set_profile_custom_field
|
||
|
@profile_custom_field = ProfileCustomField.find(params[:id])
|
||
|
end
|
||
|
|
||
|
def profile_custom_field_params
|
||
|
params.require(:profile_custom_field).permit(:label, :required, :actived)
|
||
|
end
|
||
|
end
|