diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-03-02 18:02:48 +0100 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-03-02 18:02:48 +0100 |
commit | 425a6c90c44a620e5015cd659cf5d8e3bf68ee07 (patch) | |
tree | 1bb889bca498b07dd4f3a56a5690ea9c2f602382 /app/controllers/disputes | |
parent | 0b8fe020b599341d78cc03431eb156485c70ebea (diff) | |
parent | 462a6f7d721fa0717c5627fd0f0d73ee9ec5a675 (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'app/controllers/disputes')
-rw-r--r-- | app/controllers/disputes/strikes_controller.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/controllers/disputes/strikes_controller.rb b/app/controllers/disputes/strikes_controller.rb index d41c5c727..d85dcb4d5 100644 --- a/app/controllers/disputes/strikes_controller.rb +++ b/app/controllers/disputes/strikes_controller.rb @@ -1,7 +1,11 @@ # frozen_string_literal: true class Disputes::StrikesController < Disputes::BaseController - before_action :set_strike + before_action :set_strike, only: [:show] + + def index + @strikes = current_account.strikes.latest + end def show authorize @strike, :show? |