1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Reducing queries on up_matches and brackets

This commit is contained in:
2015-11-02 11:31:40 -05:00
parent bdfbb36d48
commit 85dfadf8d2

View File

@@ -6,7 +6,7 @@ class StaticPagesController < ApplicationController
end
def up_matches
if params[:tournament]
@tournament = Tournament.find(params[:tournament])
@tournament = Tournament.where(:id => params[:tournament]).includes(:matches).first
end
if @tournament
@matches = @tournament.matches.where(mat_id: nil).order('bout_number ASC').limit(10).includes(:wrestlers)
@@ -39,8 +39,8 @@ class StaticPagesController < ApplicationController
def brackets
if params[:weight]
@weight = Weight.find(params[:weight]).includes(:matches,:wrestlers)
@tournament = Tournament.find(@weight.tournament_id)
@weight = Weight.where(:id => params[:weight]).includes(:matches,:wrestlers,:tournament).first
@tournament = @weight.tournament
@matches = @weight.matches
@wrestlers = @weight.wrestlers.includes(:school)
if @matches.empty? or @wrestlers.empty?