Sha256: 87ac10300853a9203e459e92b30fa19c2b3207b69071946ce56b11aa21485851
Contents?: true
Size: 1.86 KB
Versions: 39
Compression:
Stored size: 1.86 KB
Contents
module Spree module Api module V1 class OptionTypesController < Spree::Api::BaseController def index @option_types = if params[:ids] Spree::OptionType. includes(:option_values). accessible_by(current_ability, :read). where(id: params[:ids].split(',')) else Spree::OptionType. includes(:option_values). accessible_by(current_ability, :read). load.ransack(params[:q]).result end respond_with(@option_types) end def show @option_type = Spree::OptionType.accessible_by(current_ability, :read).find(params[:id]) respond_with(@option_type) end def new; end def create authorize! :create, Spree::OptionType @option_type = Spree::OptionType.new(option_type_params) if @option_type.save render :show, status: 201 else invalid_resource!(@option_type) end end def update @option_type = Spree::OptionType.accessible_by(current_ability, :update).find(params[:id]) if @option_type.update_attributes(option_type_params) render :show else invalid_resource!(@option_type) end end def destroy @option_type = Spree::OptionType.accessible_by(current_ability, :destroy).find(params[:id]) @option_type.destroy render plain: nil, status: 204 end private def option_type_params params.require(:option_type).permit(permitted_option_type_attributes) end end end end end
Version data entries
39 entries across 39 versions & 1 rubygems