1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/controllers/api/components_controller.rb
2015-05-05 03:10:25 +02:00

46 lines
996 B
Ruby

class API::ComponentsController < API::ApiController
before_action :authenticate_user!, except: [:index, :show]
before_action :set_component, only: [:show, :update, :destroy]
def index
@components = Component.all
end
def show
end
def create
authorize Component
@component = Component.new(component_params)
if @component.save
render :show, status: :created, location: @component
else
render json: @component.errors, status: :unprocessable_entity
end
end
def update
authorize Component
if @component.update(component_params)
render :show, status: :ok, location: @component
else
render json: @component.errors, status: :unprocessable_entity
end
end
def destroy
authorize Component
@component.destroy
head :no_content
end
private
def set_component
@component = Component.find(params[:id])
end
def component_params
params.require(:component).permit(:name)
end
end