Skip to content

Instantly share code, notes, and snippets.

@carlallen
Created September 21, 2021 15:49
Show Gist options
  • Save carlallen/b75661e53ba32ca15b535eda6fde6212 to your computer and use it in GitHub Desktop.
Save carlallen/b75661e53ba32ca15b535eda6fde6212 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