From 21d2fa4f36bb45a935cdba9205ed315243f5862d Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Fri, 21 Jun 2013 08:52:59 +0100 Subject: [PATCH] Don't send notifications when a note is deleted --- app/controllers/notes_controller.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/controllers/notes_controller.rb b/app/controllers/notes_controller.rb index f59e9974e..1b28cae6e 100644 --- a/app/controllers/notes_controller.rb +++ b/app/controllers/notes_controller.rb @@ -237,7 +237,7 @@ class NotesController < ApplicationController @note.status = "hidden" @note.save - add_comment(@note, comment, "hidden") + add_comment(@note, comment, "hidden", false) end # Return a copy of the updated note @@ -338,7 +338,7 @@ private ## # Add a comment to a note - def add_comment(note, text, event) + def add_comment(note, text, event, notify = true) attributes = { :visible => true, :event => event, :body => text } if @user @@ -350,7 +350,7 @@ private comment = note.comments.create(attributes, :without_protection => true) note.comments.map { |c| c.author }.uniq.each do |user| - if user and user != @user + if notify and user and user != @user Notifier.note_comment_notification(comment, user).deliver end end -- 2.39.5