diff options
| author | J08nY | 2017-08-16 17:13:59 +0200 |
|---|---|---|
| committer | J08nY | 2017-08-16 17:13:59 +0200 |
| commit | adca27b8e26b9ee63912ab79c480d7dd8d0bb47c (patch) | |
| tree | eeee0786e70fc829494344b02594355988730fc9 /suite_project/urls.py | |
| parent | 23f0587fe30aacec60315f3cc5d349cffa2148d2 (diff) | |
| download | django-pgpmailman-adca27b8e26b9ee63912ab79c480d7dd8d0bb47c.tar.gz django-pgpmailman-adca27b8e26b9ee63912ab79c480d7dd8d0bb47c.tar.zst django-pgpmailman-adca27b8e26b9ee63912ab79c480d7dd8d0bb47c.zip | |
Diffstat (limited to 'suite_project/urls.py')
| -rw-r--r-- | suite_project/urls.py | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/suite_project/urls.py b/suite_project/urls.py new file mode 100644 index 0000000..6f5aa49 --- /dev/null +++ b/suite_project/urls.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 2017 Jan Jancar +# +# This file is a part of the Django Mailman PGP plugin. +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +# more details. +# +# You should have received a copy of the GNU General Public License along with +# this program. If not, see <http://www.gnu.org/licenses/>. + +"""django_pgpmailman URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/1.11/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.conf.urls import url, include + 2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls')) +""" +from django.conf.urls import url, include +from django.contrib import admin +from django.urls import reverse_lazy +from django.views.generic import RedirectView + +urlpatterns = [ + url(r'^$', RedirectView.as_view( + url=reverse_lazy('list_index'), + permanent=True)), + url(r'^pgp/', include('django_pgpmailman.urls')), + url(r'^postorius/', include('postorius.urls')), + url(r'^hyperkitty/', include('hyperkitty.urls')), + url(r'', include('django_mailman3.urls')), + url(r'^accounts/', include('allauth.urls')), + # Django admin + url(r'^admin/', admin.site.urls), +] |
