summaryrefslogtreecommitdiff
path: root/app/observers/note_observer.rb
blob: 944c68393ab2b48741fe9fb202e981d5a3ac2e39 (plain)
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