aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/person.rb
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2012-05-03 18:43:24 +0100
committerPatrick J Cherry <patrick@bytemark.co.uk>2012-05-03 18:43:24 +0100
commit757853bb96c2f75bcb28f16fcf80601abee48033 (patch)
tree3f7fbd1b8340dea689a9cbe3c0cde933162e7660 /lib/mauve/person.rb
parent442e97f45ca582fdfbdd57f558e9fa82c8dfd4d3 (diff)
Username is now recorded in the History wherever possible.
Diffstat (limited to 'lib/mauve/person.rb')
-rw-r--r--lib/mauve/person.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mauve/person.rb b/lib/mauve/person.rb
index c1c12c6..6178fa0 100644
--- a/lib/mauve/person.rb
+++ b/lib/mauve/person.rb
@@ -205,7 +205,7 @@ module Mauve
# Log the result
note = "#{@alert.update_type.capitalize} #{name} notification to #{@person.username} (#{destination}) " + (res ? "succeeded" : "failed" )
logger.info note+" about #{@alert}."
- h = History.new(:alerts => [@alert], :type => "notification", :event => note)
+ h = History.new(:alerts => [@alert], :type => "notification", :event => note, :user => @person.username)
logger.error "Unable to save history due to #{h.errors.inspect}" if !h.save
return res
@@ -234,7 +234,7 @@ module Mauve
if @suppressed or self.is_on_holiday?(now) or self.is_off_sick?(now)
note = "#{alert.update_type.capitalize} notification to #{self.username} suppressed"
logger.info note + " about #{alert}."
- History.create(:alerts => [alert], :type => "notification", :event => note)
+ History.create(:alerts => [alert], :type => "notification", :event => note, :user => self.username)
return true
end