comment_observer.rb 177 Bytes
class CommentObserver < Mongoid::Observer
  observe :comment

  def after_create(comment)
    Mailer.comment_notification(comment).deliver if comment.app.notifiable?
  end

end