porkchopclub/porkchop

View on GitHub
app/controllers/matches_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class MatchesController < ApplicationController
  load_and_authorize_resource

  def index
    @matches = @matches.finalized.order(finalized_at: :desc).page(params[:page]).per(50)
  end
end