def create
@comment = @commentable.comments.new(comment_params)
@comment.user = @current_user
if @comment.save
CommentNotifier.call(@comment)
if @comment = @commentable
else
nil
end
respond_to do |format|
format.html { redirect_to @commentable }
format.js # create.js.erb
end