Skip to content

Instantly share code, notes, and snippets.

@EdwardCTaylor
Created June 24, 2015 13:03
Show Gist options
  • Save EdwardCTaylor/14ca1f8a5b8374734c07 to your computer and use it in GitHub Desktop.
Save EdwardCTaylor/14ca1f8a5b8374734c07 to your computer and use it in GitHub Desktop.
Rails Controller
class CommentsController < ApplicationController
def users_comments
posts = Post.all
comments = posts.map(&:comments).flatten
@user_comments = comments.select do |comment|
comment.author.username == params[:username]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment