Commit aa7702de452542ed2c3b427cf3e3a69808578032

Authored by Charles Oliveira
1 parent cdfb254d

Adding only relative url dispatching for gitlab

Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
colab/proxy/gitlab/urls.py
@@ -6,5 +6,5 @@ from .views import GitlabProxyView @@ -6,5 +6,5 @@ from .views import GitlabProxyView
6 6
7 urlpatterns = patterns('', 7 urlpatterns = patterns('',
8 # Gitlab URLs 8 # Gitlab URLs
9 - url(r'^gitlab/(?P<path>.*)$', GitlabProxyView.as_view()), 9 + url(r'^(?P<path>.*)$', GitlabProxyView.as_view()),
10 ) 10 )