fix notify_team on wall
This commit is contained in:
parent
84465576d7
commit
eededdd4be
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ class NoteObserver < ActiveRecord::Observer
|
||||||
# Notifies the whole team except the author of note
|
# Notifies the whole team except the author of note
|
||||||
def notify_team(note)
|
def notify_team(note)
|
||||||
# Note: wall posts are not "attached" to anything, so fall back to "Wall"
|
# Note: wall posts are not "attached" to anything, so fall back to "Wall"
|
||||||
noteable_type = note.noteable_type || "Wall"
|
noteable_type = note.noteable_type.presence || "Wall"
|
||||||
notify_method = "note_#{noteable_type.underscore}_email".to_sym
|
notify_method = "note_#{noteable_type.underscore}_email".to_sym
|
||||||
|
|
||||||
if Notify.respond_to? notify_method
|
if Notify.respond_to? notify_method
|
||||||
|
|
Loading…
Reference in a new issue