1
0
Fork 0

Fix some more n+1 stuff

This commit is contained in:
Andrew Tomaka 2015-12-23 17:01:23 -05:00
parent 1f9788309b
commit 5c4eca47a6
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ class SubcredditsController < ApplicationController
end
def show
@posts = @subcreddit.posts
@posts = @subcreddit.posts.includes(:user)
authorize @subcreddit
end

View File

@ -2,7 +2,7 @@
class UsersController < ApplicationController
def show
@user = User.friendly.find(params[:id])
@comments = @user.comments.includes(:post)
@comments = @user.comments.includes(post: :subcreddit)
end
def new