mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 07:46:07 -07:00
Add hidden user title (Full Name) column to users table
This commit is contained in:
parent
aa6592eec7
commit
4862aee9a1
4 changed files with 26 additions and 7 deletions
|
@ -131,6 +131,7 @@ class Users(object):
|
|||
'users.username',
|
||||
'(CASE WHEN users.friendly_name IS NULL OR TRIM(users.friendly_name) = "" \
|
||||
THEN users.username ELSE users.friendly_name END) AS friendly_name',
|
||||
'users.title',
|
||||
'users.email',
|
||||
'users.thumb AS user_thumb',
|
||||
'users.custom_avatar_url AS custom_thumb',
|
||||
|
@ -207,6 +208,7 @@ class Users(object):
|
|||
'user_id': item['user_id'],
|
||||
'username': item['username'],
|
||||
'friendly_name': item['friendly_name'],
|
||||
'title': item['title'],
|
||||
'email': item['email'],
|
||||
'user_thumb': user_thumb,
|
||||
'plays': item['plays'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue