Commit 9f844060708d520aaacd74e5962813c3e01d4777
Exists in
master
and in
31 other branches
Merge branch 'fix_private_token_plugin' into 'master'
Fix private token plugin conf Plugin py files was ignoring private_token and gitlab api was not working in this new version. Adding private_token to consider in plugin configuration. See merge request !74
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: | ... | ... |