Commit 66322839d9fa96d837b0456952232cbc6cf5502e

Authored by Charles Oliveira
Committed by Sergio Oliveira
1 parent 0f23221f

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 )