Sha256: 7e7314fa383c60c98737f5d223dd63e402121c65ef55f4063efba82d69355d6a
Contents?: true
Size: 1.61 KB
Versions: 76
Compression:
Stored size: 1.61 KB
Contents
class Spree::Admin::PromotionActionsController < Spree::Admin::BaseController before_action :load_promotion, only: [:create, :destroy] before_action :validate_promotion_action_type, only: :create def create @calculators = Spree::Promotion::Actions::CreateAdjustment.calculators @promotion_action = params[:action_type].constantize.new(params[:promotion_action]) @promotion_action.promotion = @promotion if @promotion_action.save flash[:success] = Spree.t(:successfully_created, :resource => Spree.t(:promotion_action)) 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_action = @promotion.promotion_actions.find(params[:id]) if @promotion_action.destroy flash[:success] = Spree.t(:successfully_removed, :resource => Spree.t(:promotion_action)) end respond_to do |format| format.html { redirect_to spree.edit_admin_promotion_path(@promotion)} format.js { render :layout => false } end end private def load_promotion @promotion = Spree::Promotion.find(params[:promotion_id]) end def validate_promotion_action_type valid_promotion_action_types = Rails.application.config.spree.promotions.actions.map(&:to_s) if !valid_promotion_action_types.include?(params[:action_type]) flash[:error] = Spree.t(:invalid_promotion_action) respond_to do |format| format.html { redirect_to spree.edit_admin_promotion_path(@promotion)} format.js { render :layout => false } end end end end
Version data entries
76 entries across 76 versions & 2 rubygems