Commit 41486a1c670f88d3a5836cfacae0b0bb35679fdb
1 parent
bdb676c6
Exists in
master
and in
31 other branches
Add private_token to plugins to fix api data for plugins
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
colab/utils/conf.py
... | ... | @@ -77,7 +77,7 @@ def load_colab_apps(): |
77 | 77 | py_settings_d = _load_py_file(file_module, plugins_dir) |
78 | 78 | fields = ['verbose_name', 'upstream', 'urls', |
79 | 79 | 'menu_urls', 'middlewares', 'dependencies', |
80 | - 'context_processors'] | |
80 | + 'context_processors', 'private_token'] | |
81 | 81 | |
82 | 82 | app_name = py_settings_d.get('name') |
83 | 83 | if not app_name: | ... | ... |