Project

General

Profile

Download (891 Bytes) Statistics
| Branch: | Tag: | Revision:
module UINotifications
module Hosts
class Base < UINotifications::Base
def deliver!
unless subject.owner
logger.warn("Invalid owner for #{subject}, unable to send notifications")
# add notification for missing owner
UINotifications::Hosts::MissingOwner.deliver!(subject)
return false
end
super
end

protected

def audience
::Notification::AUDIENCE_SUBJECT if subject.owner
end

def initiator
case subject.owner
when User
subject.owner
when Usergroup
# Usergroup, picking the first user, in theory can look in the audit
# log to see who set the host on built, but since its a group
# all of the users are going to get a notification.
subject.owner.all_users.first
end
end
end
end
end
(3-3/6)