Skip to content

Instantly share code, notes, and snippets.

@peterlcullen
Forked from carlallen/comments_controller.rb
Created September 21, 2021 18:23
Show Gist options
  • Save peterlcullen/60da6da4ac96e2f6f41336aaf2ae7940 to your computer and use it in GitHub Desktop.
Save peterlcullen/60da6da4ac96e2f6f41336aaf2ae7940 to your computer and use it in GitHub Desktop.
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