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/price_categories_controller.rb
2016-08-25 15:36:52 +02:00

48 lines
1.2 KiB
Ruby

class API::PriceCategoriesController < API::ApiController
before_action :authenticate_user!, only: [:update, :show, :create, :destroy]
before_action :set_price_category, only: [:show, :update, :destroy]
def index
@price_categories = PriceCategory.all
end
def update
authorize PriceCategory
if @price_category.update(price_category_params)
render :show, status: :ok, location: @price_category
else
render json: @price_category.errors, status: :unprocessable_entity
end
end
def show
end
def create
authorize PriceCategory
@price_category = PriceCategory.new(price_category_params)
if @price_category.save
render :show, status: :created, location: @price_category
else
render json: @price_category.errors, status: :unprocessable_entity
end
end
def destroy
authorize PriceCategory
if @price_category.safe_destroy
head :no_content
else
render json: @price_category.errors, status: :unprocessable_entity
end
end
private
def set_price_category
@price_category = PriceCategory.find(params[:id])
end
def price_category_params
params.require(:price_category).permit(:name, :conditions)
end
end