Sha256: 4d270818f86daac0c1a48d574e5b4002330976817f66585e937dfc6ccd2d92a2

Contents?: true

Size: 1.14 KB

Versions: 4

Compression:

Stored size: 1.14 KB

Contents

class ::IshManager::IroStrategiesController < IshManager::ApplicationController

  def create
    @strategy = Iro::CoveredCallStrategy.new params[:iro_strategy].permit!
    # @strategy.iro_purse_id = Iro::Purse.where( user_id: current_user.id ).first.id
    authorize! :create, @strategy
    flag = @strategy.save
    if flag
      flash[:notice] = 'Success.'
      redirect_to controller: 'ish_manager/iro_purses', action: :show, id: @strategy.iro_purse_id
    else
      flash[:alert] = "No luck: #{@strategy.errors.full_messages.join(', ')}."
      render action: 'new'
    end
  end

  def edit
    @strategy = Iro::CoveredCallStrategy.find params[:id]
    authorize! :edit, @strategy
  end

  def new
    @strategy = Iro::CoveredCallStrategy.new
    authorize! :new, @strategy
  end

  def update
    @strategy = Iro::CoveredCallStrategy.find params[:id]
    authorize! :update, @strategy
    flag = @strategy.update params[:iro_strategy].permit!
    if flag
      flash[:notice] = 'Success.'
      redirect_to my_purse_path
    else
      flash[:alert] = "No luck: #{@strategy.errors.full_messages.join(', ')}."
      render action: 'new'
    end
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ish_manager-0.1.8.415 app/controllers/ish_manager/iro_strategies_controller.rb
ish_manager-0.1.8.414 app/controllers/ish_manager/iro_strategies_controller.rb
ish_manager-0.1.8.413 app/controllers/ish_manager/iro_strategies_controller.rb
ish_manager-0.1.8.412 app/controllers/ish_manager/iro_strategies_controller.rb