note_observer.rb 178 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 class NoteObserver < ActiveRecord::Observer def after_create(note) notification.new_note(note) end protected def notification NotificationService.new end end