I have an app when users post album reviews called Pins. I created a comments model for other users to comment on the reviews. I\'m struggling getting the comments to say \"Post
You save the username in
@comment.username = current_user
and show it with:
<%= comment.user.name %>
but it have to be
<%= comment.username %>