Small enhancements.
This commit is contained in:
parent
464673594c
commit
34f9ec6a66
2 changed files with 18 additions and 18 deletions
|
@ -40,11 +40,12 @@ class Observer::Ticket::Notification::BackgroundJob
|
|||
end
|
||||
|
||||
# send notifications
|
||||
recipient_list = ''
|
||||
recipient_list = ''
|
||||
notification_subject = ''
|
||||
recipients.each do |user|
|
||||
|
||||
next if ticket.updated_by_id == ticket.owner_id
|
||||
next if ticket.updated_by_id == user.id
|
||||
next if !user.active
|
||||
|
||||
# create desktop notification
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@ returns
|
|||
=end
|
||||
|
||||
def history_log (type, user_id, data = {})
|
||||
|
||||
data[:o_id] = self['id']
|
||||
data[:history_type] = type
|
||||
data[:history_object] = self.class.name
|
||||
|
@ -37,22 +36,22 @@ returns
|
|||
|
||||
result = [
|
||||
{
|
||||
:type => 'created',
|
||||
:object => 'Ticket',
|
||||
:created_by_id => 3,
|
||||
:created_at => "2013-08-19 20:41:33",
|
||||
:type => 'created',
|
||||
:object => 'Ticket',
|
||||
:created_by_id => 3,
|
||||
:created_at => "2013-08-19 20:41:33",
|
||||
},
|
||||
{
|
||||
:type => 'updated',
|
||||
:object => 'Ticket',
|
||||
:attribute => 'priority',
|
||||
:o_id => 1,
|
||||
:id_to => 3,
|
||||
:id_from => 2,
|
||||
:value_from => "low",
|
||||
:value_to => "high",
|
||||
:created_by_id => 3,
|
||||
:created_at => "2013-08-19 20:41:33",
|
||||
:type => 'updated',
|
||||
:object => 'Ticket',
|
||||
:attribute => 'priority',
|
||||
:o_id => 1,
|
||||
:id_to => 3,
|
||||
:id_from => 2,
|
||||
:value_from => "low",
|
||||
:value_to => "high",
|
||||
:created_by_id => 3,
|
||||
:created_at => "2013-08-19 20:41:33",
|
||||
},
|
||||
]
|
||||
|
||||
|
@ -79,4 +78,4 @@ returns
|
|||
}
|
||||
end
|
||||
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue