Skip to content
Snippets Groups Projects
Commit eededdd4 authored by Johannes Schleifenbaum's avatar Johannes Schleifenbaum
Browse files

fix notify_team on wall

parent 84465576
No related branches found
No related tags found
1 merge request!2215fix notify_team on wall
Loading
Loading
@@ -21,7 +21,7 @@ class NoteObserver < ActiveRecord::Observer
# Notifies the whole team except the author of note
def notify_team(note)
# 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
 
if Notify.respond_to? notify_method
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment