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