Emi Matchu
ce64f12cc3
We wisely did preloading in some places. Now, we don't need to! Hopefully this'll even be a free speed boost on some pages!
18 lines
538 B
Ruby
18 lines
538 B
Ruby
class ContributionsController < ApplicationController
|
|
def index
|
|
if params[:user_id]
|
|
@user = User.find params[:user_id]
|
|
@contributions = @user.contributions
|
|
else
|
|
@contributions = Contribution.includes(:user)
|
|
end
|
|
@contributions = @contributions.recent.paginate :page => params[:page]
|
|
Contribution.preload_contributeds_and_parents(
|
|
@contributions,
|
|
:scopes => {
|
|
'Item' => Item.includes(:translations),
|
|
'PetType' => PetType.includes(:species, :color)
|
|
}
|
|
)
|
|
end
|
|
end
|