Sha256: c2c9c9f8836942036cd50b7c234b8aecd2e226b7472eac2a84298293f1b8b110

Contents?: true

Size: 1.6 KB

Versions: 26

Compression:

Stored size: 1.6 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
    @report.author = current_profile
    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.page( params[:reports_page] ).per( current_profile.per_page )
    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

26 entries across 26 versions & 1 rubygems

Version Path
wco_models-3.1.0.187 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.184 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.183 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.182 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.181 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.180 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.178 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.177 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.176 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.175 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.174 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.173 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.172 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.171 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.170 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.169 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.168 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.167 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.166 app/controllers/wco/reports_controller.rb
wco_models-3.1.0.165 app/controllers/wco/reports_controller.rb