Change get_users API command to pull from database instead of Plex.tv

This commit is contained in:
JonnyWong16 2018-06-30 16:45:56 -07:00
commit 5cf1cac7e9
4 changed files with 44 additions and 13 deletions

View file

@ -355,8 +355,8 @@ class PlexTV(object):
"username": helpers.get_xml_attr(a, 'username'),
"thumb": helpers.get_xml_attr(a, 'thumb'),
"email": helpers.get_xml_attr(a, 'email'),
"is_home_user": helpers.get_xml_attr(a, 'home'),
"is_admin": 1,
"is_home_user": helpers.get_xml_attr(a, 'home'),
"is_allow_sync": 1,
"is_restricted": helpers.get_xml_attr(a, 'restricted'),
"filter_all": helpers.get_xml_attr(a, 'filterAll'),