|
@@ -993,7 +993,7 @@ CUSTOM = ConfigSection(
|
|
|
help=_("The cache TTL in milliseconds for the assist/autocomplete/etc calls. Set to 0 it disables the cache.")),
|
|
help=_("The cache TTL in milliseconds for the assist/autocomplete/etc calls. Set to 0 it disables the cache.")),
|
|
|
LOGO_SVG=Config("logo_svg",
|
|
LOGO_SVG=Config("logo_svg",
|
|
|
default="",
|
|
default="",
|
|
|
- help=_("SVG code to replace the default Hue logo in the top bar and sign in screen")),
|
|
|
|
|
|
|
+ help=_("SVG code to replace the default Hue logo in the top bar and sign in screen"))
|
|
|
))
|
|
))
|
|
|
|
|
|
|
|
AUTH = ConfigSection(
|
|
AUTH = ConfigSection(
|
|
@@ -1938,6 +1938,13 @@ ENABLE_LINK_SHARING = Config(
|
|
|
type=coerce_bool,
|
|
type=coerce_bool,
|
|
|
help=_('Turn on the direct link sharing of saved document.')
|
|
help=_('Turn on the direct link sharing of saved document.')
|
|
|
)
|
|
)
|
|
|
|
|
+DISABLE_LOCAL_STORAGE = Config(
|
|
|
|
|
+ key='disable_local_storage',
|
|
|
|
|
+ default="false",
|
|
|
|
|
+ type=coerce_bool,
|
|
|
|
|
+ help=_("Hue uses Localstorage to keep the users settings and database preferences."
|
|
|
|
|
+ "Please make this value true in case local storage should not be used")
|
|
|
|
|
+)
|
|
|
|
|
|
|
|
ENABLE_CONNECTORS = Config(
|
|
ENABLE_CONNECTORS = Config(
|
|
|
key='enable_connectors',
|
|
key='enable_connectors',
|