Added line break to notif text body using regex instead of having to create another db column/field (too lazy!)

Regex solutions are pretty elegant and concise, but darn hard to read (for me)! This regex adds a line break after the first colon :

... notif.body.replace(/(\:\s+)/, '\$1

')