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
Sylvain 0cd841da33 rubocop api controllers
TODO:
 - events controller
 - availabilies controller
 - members controller
 - plans controller
2019-01-16 16:28:25 +01:00

50 lines
994 B
Ruby

# frozen_string_literal: true
# API Controller for resources of type Theme
# Themes are used in Projects
class API::ThemesController < API::ApiController
before_action :authenticate_user!, except: %i[index show]
before_action :set_theme, only: %i[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