Add newsletter base URL setting

This commit is contained in:
JonnyWong16 2018-03-19 22:57:38 -07:00
parent 7e11af1fd0
commit 1cb5f0b635
5 changed files with 51 additions and 21 deletions

View file

@ -2746,7 +2746,8 @@ class WebInterface(object):
"themoviedb_lookup": checked(plexpy.CONFIG.THEMOVIEDB_LOOKUP),
"tvmaze_lookup": checked(plexpy.CONFIG.TVMAZE_LOOKUP),
"show_advanced_settings": plexpy.CONFIG.SHOW_ADVANCED_SETTINGS,
"newsletter_dir": plexpy.CONFIG.NEWSLETTER_DIR
"newsletter_dir": plexpy.CONFIG.NEWSLETTER_DIR,
"newsletter_base_url": plexpy.CONFIG.NEWSLETTER_BASE_URL
}
return serve_template(templatename="settings.html", title="Settings", config=config, kwargs=kwargs)