mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
Test: - Submit the domain form unchanged. Message is printed that settings are unchanged. - Submit the domain form with changes. Message is printed that domain has been updated. Configuration reflects the new domain. - On page load, the current domain is shown in the domain configuration form. - Clicking the repair button the service alert section triggers the repair operations as seen in the console. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
15 lines
460 B
Python
15 lines
460 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
from django.urls import path
|
|
from stronghold.decorators import public
|
|
|
|
from plinth.utils import non_admin_view
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('apps/email_server/', views.EmailServerView.as_view(), name='index'),
|
|
path('apps/email_server/my_aliases',
|
|
non_admin_view(views.AliasView.as_view()), name='aliases'),
|
|
path('apps/email_server/config.xml', public(views.XmlView.as_view())),
|
|
]
|