Sunil Mohan Adapa 29bf55dedb
security: Use AppView for app page
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>
2022-08-29 08:29:09 -04:00

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'),
]