Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add KOLIBRI_ENABLE_CUSTOM_CHANNEL_NAV - default True to options.py #8025

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions kolibri/utils/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
LANGUAGES
ZIP_CONTENT_HOST
ZIP_CONTENT_PORT
DISABLE_CUSTOM_CHANNEL_NAV

[Python]
PICKLE_PROTOCOL
Expand Down Expand Up @@ -367,6 +368,11 @@ def path_list(value):
"default": 8888,
"envvars": ("KOLIBRI_ZIP_CONTENT_PORT",),
},
"DISABLE_CUSTOM_CHANNEL_NAV": {
nucleogenesis marked this conversation as resolved.
Show resolved Hide resolved
"type": "boolean",
"default": False,
"envvars": ("DISABLE_CUSTOM_CHANNEL_NAV",),
},
},
"Python": {
"PICKLE_PROTOCOL": {
Expand Down