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

46 lines
904 B
Ruby

class API::ThemesController < API::ApiController
before_action :authenticate_user!, except: [:index, :show]
before_action :set_theme, only: [:show, :update, :destroy]
def index
@themes = Theme.all
end
def show
end
def create
authorize Theme
@theme = Theme.new(theme_params)
if @theme.save
render :show, status: :created, location: @theme
else
render json: @theme.errors, status: :unprocessable_entity
end
end
def update
authorize Theme
if @theme.update(theme_params)
render :show, status: :ok, location: @theme
else
render json: @theme.errors, status: :unprocessable_entity
end
end
def destroy
authorize Theme
@theme.destroy
head :no_content
end
private
def set_theme
@theme = Theme.find(params[:id])
end
def theme_params
params.require(:theme).permit(:name)
end
end