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.92 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.91 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.90 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.89 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.88 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.87 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.86 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.85 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.83 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.82 app/controllers/wco/reports_controller.rb