From aa7702de452542ed2c3b427cf3e3a69808578032 Mon Sep 17 00:00:00 2001 From: Charles Oliveira <18oliveira.charles@gmail.com> Date: Thu, 30 Oct 2014 11:10:12 -0200 Subject: [PATCH] Adding only relative url dispatching for gitlab --- colab/proxy/gitlab/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colab/proxy/gitlab/urls.py b/colab/proxy/gitlab/urls.py index afe6440..66d7516 100644 --- a/colab/proxy/gitlab/urls.py +++ b/colab/proxy/gitlab/urls.py @@ -6,5 +6,5 @@ from .views import GitlabProxyView urlpatterns = patterns('', # Gitlab URLs - url(r'^gitlab/(?P.*)$', GitlabProxyView.as_view()), + url(r'^(?P.*)$', GitlabProxyView.as_view()), ) -- libgit2 0.21.2