diff --git a/cookbooks/colab/templates/gitlab.py.erb b/cookbooks/colab/templates/gitlab.py.erb index 38cfda3..73f1031 100644 --- a/cookbooks/colab/templates/gitlab.py.erb +++ b/cookbooks/colab/templates/gitlab.py.erb @@ -22,18 +22,18 @@ url = colab_url_factory('gitlab') menu_urls = ( url(display=_('Public Projects'), viewname='gitlab', - kwargs={'path': '/public/projects'}, auth=False), + kwargs={'path': 'public/projects'}, auth=False), url(display=_('Profile'), viewname='gitlab', - kwargs={'path': '/profile'}, auth=True), + kwargs={'path': 'profile'}, auth=True), url(display=_('New Project'), viewname='gitlab', - kwargs={'path': '/projects/new'}, auth=True), + kwargs={'path': 'projects/new'}, auth=True), url(display=_('Projects'), viewname='gitlab', - kwargs={'path': '/dashboard/projects'}, auth=True), + kwargs={'path': 'dashboard/projects'}, auth=True), url(display=_('Groups'), viewname='gitlab', - kwargs={'path': '/profile/groups'}, auth=True), + kwargs={'path': 'profile/groups'}, auth=True), url(display=_('Issues'), viewname='gitlab', - kwargs={'path': '/dashboard/issues'}, auth=True), + kwargs={'path': 'dashboard/issues'}, auth=True), url(display=_('Merge Requests'), viewname='gitlab', - kwargs={'path': '/merge_requests'}, auth=True), + kwargs={'path': 'merge_requests'}, auth=True), ) -- libgit2 0.21.2