Sha256: 7bcbafc939068c7e87cd1c7453c6a24f24fe5674673fe1416f5604428c2447b7
Contents?: true
Size: 1.33 KB
Versions: 39
Compression:
Stored size: 1.33 KB
Contents
module Spree module Api module V1 class StoresController < Spree::Api::BaseController before_action :get_store, except: [:index, :create] def index authorize! :read, Store @stores = Store.accessible_by(current_ability, :read).all respond_with(@stores) end def create authorize! :create, Store @store = Store.new(store_params) @store.code = params[:store][:code] if @store.save respond_with(@store, status: 201, default_template: :show) else invalid_resource!(@store) end end def update authorize! :update, @store if @store.update_attributes(store_params) respond_with(@store, status: 200, default_template: :show) else invalid_resource!(@store) end end def show authorize! :read, @store respond_with(@store) end def destroy authorize! :destroy, @store @store.destroy respond_with(@store, status: 204) end private def get_store @store = Store.find(params[:id]) end def store_params params.require(:store).permit(permitted_store_attributes) end end end end end
Version data entries
39 entries across 39 versions & 1 rubygems