mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
17 lines
406 B
Python
17 lines
406 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the OpenVPN module.
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
|
|
from plinth.utils import non_admin_view
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^apps/openvpn/$', views.index, name='index'),
|
|
url(r'^apps/openvpn/setup/$', views.setup, name='setup'),
|
|
url(r'^apps/openvpn/profile/$', non_admin_view(views.profile),
|
|
name='profile'),
|
|
]
|