Commit b2bdfcaae377cdf3f0644481dc39512d2592c691
1 parent
b77da1cd
Exists in
master
and in
39 other branches
Added app to context_processor
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
colab/proxy/context_processors.py
@@ -7,6 +7,6 @@ def proxied_apps(request): | @@ -7,6 +7,6 @@ def proxied_apps(request): | ||
7 | 7 | ||
8 | for app in apps.get_app_configs(): | 8 | for app in apps.get_app_configs(): |
9 | if getattr(app, 'colab_proxied_app', False): | 9 | if getattr(app, 'colab_proxied_app', False): |
10 | - proxied_apps[app.label] = True | 10 | + proxied_apps[app.label] = app |
11 | 11 | ||
12 | return {'proxy': proxied_apps} | 12 | return {'proxy': proxied_apps} |