fix: code linter

This commit is contained in:
kbe
2025-09-17 16:52:05 +02:00
parent 6058023f30
commit 8acca705fa
4 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
class Admin::PayoutsController < ApplicationController
before_action :authenticate_user!
before_action :ensure_admin!
before_action :set_payout, only: [:show, :approve, :reject, :mark_processing, :mark_completed, :mark_failed]
before_action :set_payout, only: [ :show, :approve, :reject, :mark_processing, :mark_completed, :mark_failed ]
def index
@pending_payouts = Payout.pending.includes(:user, :event).order(created_at: :asc)