mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-04 08:53:42 +00:00
- Start showing port ranges properly. - Fixes issue with Coturn TURN relay ports not being shown. Closes: #1851. Tests: - Visit each of affected apps and see the port forwarding information. The information is same as before. - HTTP and HTTPS ports are not shown. - Coturn app shows additional port ranges for TURN relay ports. - Shadowsocks app does not show port forwarding information as it is internal only. - Visit one of the apps not effected by the patch. There is no section related to port forwarding. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
14 lines
261 B
Python
14 lines
261 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the infinoted module.
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
|
|
from plinth.views import AppView
|
|
|
|
urlpatterns = [
|
|
url(r'^apps/infinoted/$', AppView.as_view(app_id='infinoted'),
|
|
name='index'),
|
|
]
|