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

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

end