2022-02-15 07:27:53 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Disputes::StrikesController < Disputes::BaseController
|
2022-03-02 05:37:47 +11:00
|
|
|
before_action :set_strike, only: [:show]
|
|
|
|
|
|
|
|
def index
|
|
|
|
@strikes = current_account.strikes.latest
|
|
|
|
end
|
2022-02-15 07:27:53 +11:00
|
|
|
|
|
|
|
def show
|
|
|
|
authorize @strike, :show?
|
|
|
|
|
|
|
|
@appeal = @strike.appeal || @strike.build_appeal
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_strike
|
|
|
|
@strike = AccountWarning.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|