Sha256: 71ebbb951559e39a15868f4ae17830a8f0be1c2fdf2d463b05203316627f46e1
Contents?: true
Size: 1.23 KB
Versions: 38
Compression:
Stored size: 1.23 KB
Contents
module Spree module Api class StoresController < Spree::Api::BaseController before_filter :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
Version data entries
38 entries across 38 versions & 2 rubygems