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/plan_categories_controller.rb
2021-06-08 17:00:52 +02:00

53 lines
1.1 KiB
Ruby

# frozen_string_literal: true
# API Controller for resources of type PlanCategory
# PlanCategory are used to sort plans
class API::PlanCategoriesController < API::ApiController
before_action :authenticate_user!
before_action :set_category, only: %i[show update destroy]
def index
authorize PlanCategory
@categories = PlanCategory.order(weight: :desc)
end
def show; end
def create
authorize PlanCategory
@category = PlanCategory.new(plan_category_params)
if @category.save
render :show, status: :created, location: @category
else
render json: @category.errors, status: :unprocessable_entity
end
end
def update
authorize @category
if @category.update(plan_category_params)
render :show, status: :ok
else
render json: @category.errors, status: :unprocessable_entity
end
end
def destroy
authorize @category
@category.destroy
head :no_content
end
private
def set_category
@category = PlanCategory.find(params[:id])
end
def plan_category_params
params.require(:plan_category).permit(:name, :weight)
end
end