From 64e433ae12711bfd62e7cef7abd421b616c90057 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Sun, 1 Dec 2019 10:54:45 -0500 Subject: [PATCH] samba: Move urls under apps/ Signed-off-by: James Valleroy --- plinth/modules/samba/urls.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plinth/modules/samba/urls.py b/plinth/modules/samba/urls.py index d98f384a4..93961194e 100644 --- a/plinth/modules/samba/urls.py +++ b/plinth/modules/samba/urls.py @@ -23,9 +23,9 @@ from django.conf.urls import url from . import views urlpatterns = [ - url(r'^samba/$', views.SambaAppView.as_view(), name='index'), - url(r'^samba/share/(?P[A-Za-z0-9%_.\-~]+)/$', views.share, - name='share'), - url(r'^samba/unshare/(?P[A-Za-z0-9%_.\-~]+)/$', views.unshare, - name='unshare'), + url(r'^apps/samba/$', views.SambaAppView.as_view(), name='index'), + url(r'^apps/samba/share/(?P[A-Za-z0-9%_.\-~]+)/$', + views.share, name='share'), + url(r'^apps/samba/unshare/(?P[A-Za-z0-9%_.\-~]+)/$', + views.unshare, name='unshare'), ]