Sha256: 76034dbde705a61bd76ae3c2bac5e07c339d01f0fed283fbacd334bdc51d9141

Contents?: true

Size: 1.5 KB

Versions: 70

Compression:

Stored size: 1.5 KB

Contents

class Wco::ReportsController < Wco::ApplicationController

  before_action :set_lists

  def create
    params[:report][:tag_ids]&.delete ''

    @report = Wco::Report.new params[:report].permit!
    authorize! :create, @report
    if @report.save
      flash_notice "created report"
    else
      flash_alert "Cannot create report: #{@report.errors.messages}"
    end
    redirect_to action: 'index'
  end

  def destroy
    @report = Wco::Report.find params[:id]
    authorize! :destroy, @report
    if @report.destroy
      flash_notice 'ok'
    else
      flash_alert 'No luck.'
    end
    redirect_to action: 'index'
  end

  def edit
    @report = Wco::Report.unscoped.find params[:id]
    authorize! :edit, @report
  end

  def index
    authorize! :index, Wco::Report
    @reports = Wco::Report.all
    if params[:deleted]
      @reports = Wco::Report.unscoped.where( :deleted_at.ne => nil )
    end
  end

  def new
    authorize! :new, Wco::Report
    @new_report = Wco::Report.new
  end

  def show
    @report = Wco::Report.unscoped.find params[:id]
    authorize! :show, @report
  end

  def update
    params[:report][:tag_ids]&.delete ''

    @report = Wco::Report.unscoped.find params[:id]
    authorize! :update, @report
    if @report.update params[:report].permit!
      flash_notice "updated report"
    else
      flash_alert "Cannot update report: #{@report.errors.messages}"
    end
    redirect_to action: 'index'
  end

  ##
  ## private
  ##
  private

  def set_lists
    @tags_list = Wco::Tag.list
  end

end

Version data entries

70 entries across 70 versions & 1 rubygems

Version Path
wco_models-3.1.0.152 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.151 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.150 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.149 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.148 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.147 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.146 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.145 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.144 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.143 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.142 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.141 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.140 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.139 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.138 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.137 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.136 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.135 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.134 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.133 app/controllers/wco/reports_controller.rb