mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 21:51:14 -07:00
Add notification success to database
This commit is contained in:
parent
fc37a8afa3
commit
006e7c214d
5 changed files with 68 additions and 19 deletions
|
@ -1321,7 +1321,8 @@ class DataFactory(object):
|
|||
'notify_log.agent_name',
|
||||
'notify_log.notify_action',
|
||||
'notify_log.subject_text',
|
||||
'notify_log.body_text'
|
||||
'notify_log.body_text',
|
||||
'notify_log.success'
|
||||
]
|
||||
try:
|
||||
query = data_tables.ssp_query(table_name='notify_log',
|
||||
|
@ -1360,7 +1361,8 @@ class DataFactory(object):
|
|||
'agent_name': item['agent_name'],
|
||||
'notify_action': item['notify_action'],
|
||||
'subject_text': item['subject_text'],
|
||||
'body_text': body_text
|
||||
'body_text': body_text,
|
||||
'success': item['success']
|
||||
}
|
||||
|
||||
rows.append(row)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue