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/licences_controller.rb
2015-05-05 03:10:25 +02:00

46 lines
964 B
Ruby

class API::LicencesController < API::ApiController
before_action :authenticate_user!, except: [:index, :show]
before_action :set_licence, only: [:show, :update, :destroy]
def index
@licences = Licence.all
end
def show
end
def create
authorize Licence
@licence = Licence.new(licence_params)
if @licence.save
render :show, status: :created, location: @licence
else
render json: @licence.errors, status: :unprocessable_entity
end
end
def update
authorize Licence
if @licence.update(licence_params)
render :show, status: :ok, location: @licence
else
render json: @licence.errors, status: :unprocessable_entity
end
end
def destroy
authorize Licence
@licence.destroy
head :no_content
end
private
def set_licence
@licence = Licence.find(params[:id])
end
def licence_params
params.require(:licence).permit(:name, :description)
end
end