Commit 5fe987ce7a5254b412f8c9023e5d35029250a531
1 parent
8ec6e643
Exists in
startplugin
Removed Gitlab hardcoded
Signed-off-by: Sergio Oliveira <sergio@tracy.com.br>
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
colab/conf/plugin_template/src/app_name/urls.py
| ... | ... | @@ -4,5 +4,6 @@ from django.conf.urls import patterns, url |
| 4 | 4 | from .views import {{ app_name_camel }}ProxyView |
| 5 | 5 | |
| 6 | 6 | urlpatterns = patterns('', |
| 7 | - url(r'^(?P<path>.*)$', GitlabProxyView.as_view(), name='{{ app_name }}'), | |
| 7 | + url(r'^(?P<path>.*)$', {{ app_name_camel }}ProxyView.as_view(), | |
| 8 | + name='{{ app_name }}'), | |
| 8 | 9 | ) | ... | ... |