note_observer.rb 101 Bytes
class NoteObserver < BaseObserver
  def after_create(note)
    notification.new_note(note)
  end
end