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/categories_controller.rb

50 lines
1.0 KiB
Ruby
Raw Normal View History

2015-05-05 03:10:25 +02:00
class API::CategoriesController < API::ApiController
before_action :authenticate_user!, except: [:index]
2016-06-28 17:06:33 +02:00
before_action :set_category, only: [:show, :update, :destroy]
2015-05-05 03:10:25 +02:00
def index
@categories = Category.all
end
2016-06-28 17:06:33 +02:00
def show
end
def create
authorize Category
@category = Category.new(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(category_params)
render :show, status: :ok, location: @category
else
render json: @category.errors, status: :unprocessable_entity
end
end
def destroy
authorize Category
if @category.safe_destroy
head :no_content
else
render json: @category.errors, status: :unprocessable_entity
end
2016-06-28 17:06:33 +02:00
end
private
def set_category
@category = Category.find(params[:id])
end
def category_params
params.require(:category).permit(:name)
end
2015-05-05 03:10:25 +02:00
end