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
Sylvain 0cd841da33 rubocop api controllers
TODO:
 - events controller
 - availabilies controller
 - members controller
 - plans controller
2019-01-16 16:28:25 +01:00

50 lines
1.0 KiB
Ruby

# frozen_string_literal: true
# API Controller for resources of type Licence
# Licenses are used in Projects
class API::LicencesController < API::ApiController
before_action :authenticate_user!, except: %i[index show]
before_action :set_licence, only: %i[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