Commit b2bdfcaae377cdf3f0644481dc39512d2592c691

Authored by Sergio Oliveira
1 parent b77da1cd

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 7  
8 8 for app in apps.get_app_configs():
9 9 if getattr(app, 'colab_proxied_app', False):
10   - proxied_apps[app.label] = True
  10 + proxied_apps[app.label] = app
11 11  
12 12 return {'proxy': proxied_apps}
... ...