MorningPeak/app/controllers/concerns/commentable_form.rb

9 lines
140 B
Ruby

module CommentableForm
def prepare_comment_for(commentable)
@comment = Comment.new
@comment.commentable = commentable
end
end