10 lines
246 B
Ruby
10 lines
246 B
Ruby
module CommentsHelper
|
|
def new_comment_placeholder(card)
|
|
if card.creator == Current.user && card.comments.empty?
|
|
"Next, add some notes, context, pictures, or video about this…"
|
|
else
|
|
"Type your comment…"
|
|
end
|
|
end
|
|
end
|