Skip to content
Snippets Groups Projects
Verified Commit 3b53daa5 authored by Evangelos Foutras's avatar Evangelos Foutras :smiley_cat:
Browse files

mailman3: rebase urls.py to mailman-web 0.0.5-5

parent 2d2c2ddb
No related branches found
No related tags found
No related merge requests found
Pipeline #24468 passed
......@@ -17,19 +17,19 @@
# Postorius. If not, see <http://www.gnu.org/licenses/>.
from django.urls import include, path
from django.conf.urls import include
from django.contrib import admin
from django.urls import reverse_lazy
from django.urls import path, reverse_lazy
from django.views.generic import RedirectView
urlpatterns = [
path('', RedirectView.as_view(
url=reverse_lazy('list_index'),
permanent=True)),
path(
'',
RedirectView.as_view(url=reverse_lazy('list_index'), permanent=True),
),
path('mailman3/', include('postorius.urls')),
path('archives/', include('hyperkitty.urls')),
path('', include('django_mailman3.urls')),
path('accounts/', include('allauth.urls')),
# Django admin
path('admin3/', admin.site.urls),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment