mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-12 16:22:57 -07:00
Filter all graph data for guests
This commit is contained in:
parent
545dd08535
commit
c8b13ff5e1
5 changed files with 83 additions and 29 deletions
|
@ -53,6 +53,10 @@ def initialize(options):
|
|||
'tools.decode.on': True
|
||||
}
|
||||
|
||||
if plexpy.DEV:
|
||||
options_dict['environment'] = "test_suite"
|
||||
options_dict['engine.autoreload.on'] = True
|
||||
|
||||
if enable_https:
|
||||
options_dict['server.ssl_certificate'] = https_cert
|
||||
options_dict['server.ssl_private_key'] = https_key
|
||||
|
@ -60,10 +64,6 @@ def initialize(options):
|
|||
else:
|
||||
protocol = "http"
|
||||
|
||||
if plexpy.DEV:
|
||||
options_dict['environment'] = "test_suite"
|
||||
options_dict['engine.autoreload.on'] = True
|
||||
|
||||
if options['http_password']:
|
||||
logger.info("Web server authentication is enabled, username is '%s'", options['http_username'])
|
||||
options_dict['tools.auth.on'] = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue