mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-20 05:13:21 -07:00
Add show and episode title to get_history API
This commit is contained in:
parent
e31e531f9c
commit
655f1c249e
2 changed files with 34 additions and 24 deletions
|
@ -80,7 +80,9 @@ class DataFactory(object):
|
|||
'session_history_metadata.parent_rating_key',
|
||||
'session_history_metadata.grandparent_rating_key',
|
||||
'session_history_metadata.full_title',
|
||||
'session_history_metadata.title',
|
||||
'session_history_metadata.parent_title',
|
||||
'session_history_metadata.grandparent_title',
|
||||
'session_history_metadata.year',
|
||||
'session_history_metadata.media_index',
|
||||
'session_history_metadata.parent_media_index',
|
||||
|
@ -124,7 +126,9 @@ class DataFactory(object):
|
|||
'parent_rating_key',
|
||||
'grandparent_rating_key',
|
||||
'full_title',
|
||||
'title',
|
||||
'parent_title',
|
||||
'grandparent_title',
|
||||
'year',
|
||||
'media_index',
|
||||
'parent_media_index',
|
||||
|
@ -217,7 +221,9 @@ class DataFactory(object):
|
|||
'parent_rating_key': item['parent_rating_key'],
|
||||
'grandparent_rating_key': item['grandparent_rating_key'],
|
||||
'full_title': item['full_title'],
|
||||
'title': item['parent_title'],
|
||||
'parent_title': item['parent_title'],
|
||||
'grandparent_title': item['grandparent_title'],
|
||||
'year': item['year'],
|
||||
'media_index': item['media_index'],
|
||||
'parent_media_index': item['parent_media_index'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue