mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
15 lines
348 B
Python
15 lines
348 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the JSXC module
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
from stronghold.decorators import public
|
|
|
|
from .views import JSXCAppView, JsxcView
|
|
|
|
urlpatterns = [
|
|
url(r'^apps/jsxc/$', JSXCAppView.as_view(), name='index'),
|
|
url(r'^apps/jsxc/jsxc/$', public(JsxcView.as_view()), name='jsxc')
|
|
]
|