6 lines
101 B
Ruby
6 lines
101 B
Ruby
class NoteObserver < BaseObserver
|
|
def after_create(note)
|
|
notification.new_note(note)
|
|
end
|
|
end
|