Viewing comments - UIKonf/cfp GitHub Wiki
List all comments of a proposal
Log in to the console:
heroku run rails console
List all comments:
Comment.unscoped.where(proposal_id: <proposal_id>)
List all hidden comments:
Comment.unscoped.where(proposal_id: <proposal_id>, hidden: true)