diff --git a/plinth/modules/jsxc/manifest.py b/plinth/modules/jsxc/manifest.py index 30c2bf56d..234e80caa 100644 --- a/plinth/modules/jsxc/manifest.py +++ b/plinth/modules/jsxc/manifest.py @@ -24,6 +24,6 @@ clients = validate([{ _('JSXC'), 'platforms': [{ 'type': 'web', - 'url': '/jsxc' + 'url': '/plinth/apps/jsxc/jsxc/' }] }]) diff --git a/plinth/modules/jsxc/urls.py b/plinth/modules/jsxc/urls.py index 70e2fd254..a9f33eeb2 100644 --- a/plinth/modules/jsxc/urls.py +++ b/plinth/modules/jsxc/urls.py @@ -14,7 +14,6 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # - """ URLs for the JSXC module """ @@ -23,8 +22,7 @@ from django.conf.urls import url from .views import JSXCServiceView, JsxcView - urlpatterns = [ - url(r'^apps/jsxc$', JSXCServiceView.as_view(), name='index'), - url(r'^apps/jsxc/jsxc$', JsxcView.as_view(), name='jsxc') + url(r'^apps/jsxc/$', JSXCServiceView.as_view(), name='index'), + url(r'^apps/jsxc/jsxc/$', JsxcView.as_view(), name='jsxc') ]