Sha256: 4ad1de27599f02af2f2559087fa51093882722ef2df9b95fabff7fb333d6453d

Contents?: true

Size: 702 Bytes

Versions: 20

Compression:

Stored size: 702 Bytes

Contents

module Spree
  module Api
    module V1
      class PromotionsController < Spree::Api::BaseController
        before_action :requires_admin
        before_action :load_promotion

        def show
          if @promotion
            respond_with(@promotion, default_template: :show)
          else
            raise ActiveRecord::RecordNotFound
          end
        end

        private

        def requires_admin
          return if @current_user_roles.include?('admin')
          unauthorized and return
        end

        def load_promotion
          @promotion = Spree::Promotion.find_by(id: params[:id]) || Spree::Promotion.with_coupon_code(params[:id])
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
spree_api-3.4.6 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.6.6 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.6.5 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.6.4 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.6.3 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.6.2 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.6.1 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.6.0 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.5.0 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.6.0.rc1 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.5.0.rc2 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.5.0.rc1 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.4.5 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.4.4 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.4.3 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.4.2 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.4.1 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.4.0 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.4.0.rc2 app/controllers/spree/api/v1/promotions_controller.rb
spree_api-3.4.0.rc1 app/controllers/spree/api/v1/promotions_controller.rb