Merge Request #74
← To merge requests
From
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.
Commits (1)
Showing
1 changed file
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: | ... | ... |
-
mentioned in commit 9f844060708d520aaacd74e5962813c3e01d4777