mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
Tests: - Enable/disable button is not shown. - Diagnostics are shown and work. - Initial status of the configuration is show properly. - Enabling/disabling configuration options reflects correct status. - Status of frequent features updates shows properly. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
14 lines
303 B
Python
14 lines
303 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the security module
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
re_path(r'^sys/security/$', views.SecurityAppView.as_view(), name='index'),
|
|
re_path(r'^sys/security/report$', views.report, name='report'),
|
|
]
|