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/event_themes_controller.rb
2016-06-29 10:38:04 +02:00

48 lines
1.0 KiB
Ruby

class API::EventThemesController < API::ApiController
before_action :authenticate_user!
before_action :set_event_theme, only: [:show, :update, :destroy]
def index
authorize EventTheme
@event_themes = EventTheme.all
end
def show
end
def create
authorize EventTheme
@event_theme = EventTheme.new(event_theme_params)
if @event_theme.save
render :show, status: :created, location: @event_theme
else
render json: @event_theme.errors, status: :unprocessable_entity
end
end
def update
authorize EventTheme
if @event_theme.update(event_theme_params)
render :show, status: :ok, location: @event_theme
else
render json: @event_theme.errors, status: :unprocessable_entity
end
end
def destroy
authorize EventTheme
@event_theme.destroy
head :no_content
end
private
def set_event_theme
@event_theme = EventTheme.find(params[:id])
end
def event_theme_params
params.require(:event_theme).permit(:name)
end
end