Sha256: 6494d87fc8b92d172a8be742e92852fd9b2df71ec1c92c06096d0cf2ff2db07a

Contents?: true

Size: 1.24 KB

Versions: 9

Compression:

Stored size: 1.24 KB

Contents

class Spree::Admin::PromotionRulesController < Spree::Admin::BaseController
  helper 'spree/promotion_rules'

  def create
    @promotion = Spree::Promotion.find(params[:promotion_id])
    # Remove type key from this hash so that we don't attempt
    # to set it when creating a new record, as this is raises
    # an error in ActiveRecord 3.2.
    promotion_rule_type = params[:promotion_rule].delete(:type)
    @promotion_rule = promotion_rule_type.constantize.new(params[:promotion_rule])
    @promotion_rule.promotion = @promotion
    if @promotion_rule.save
      flash[:success] = I18n.t(:successfully_created, :resource => I18n.t(:promotion_rule))
    end
    respond_to do |format|
      format.html { redirect_to spree.edit_admin_promotion_path(@promotion)}
      format.js   { render :layout => false }
    end
  end

  def destroy
    @promotion = Spree::Promotion.find(params[:promotion_id])
    @promotion_rule = @promotion.promotion_rules.find(params[:id])
    if @promotion_rule.destroy
      flash[:success] = I18n.t(:successfully_removed, :resource => I18n.t(:promotion_rule))
    end
    respond_to do |format|
      format.html { redirect_to spree.edit_admin_promotion_path(@promotion)}
      format.js   { render :layout => false }
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
spree_promo-1.3.5 app/controllers/spree/admin/promotion_rules_controller.rb
spree_promo-1.3.4 app/controllers/spree/admin/promotion_rules_controller.rb
spree_promo-1.3.3 app/controllers/spree/admin/promotion_rules_controller.rb
spree_promo-1.3.2 app/controllers/spree/admin/promotion_rules_controller.rb
spree_promo-1.3.1 app/controllers/spree/admin/promotion_rules_controller.rb
spree_promo-1.3.0 app/controllers/spree/admin/promotion_rules_controller.rb
spree_promo-1.3.0.rc2 app/controllers/spree/admin/promotion_rules_controller.rb
dup_spree_promo-1.3.0.rc1 app/controllers/spree/admin/promotion_rules_controller.rb
spree_promo-1.3.0.rc1 app/controllers/spree/admin/promotion_rules_controller.rb