on data fetched from mailman by a cronjob running the import_mailman_listinfo managemnt command. Fixes issue #2438. - Legacy-Id: 14587
14 lines
479 B
Python
14 lines
479 B
Python
# Copyright The IETF Trust 2007, All Rights Reserved
|
|
|
|
from django.views.generic import RedirectView
|
|
|
|
from ietf.mailinglists import views
|
|
from ietf.utils.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^wg/?$', views.groups),
|
|
url(r'^nonwg/?$', views.nonwg),
|
|
url(r'^nonwg/update/?$', RedirectView.as_view(url='https://www.ietf.org/list/nonwg.html', permanent=True)),
|
|
url(r'^request/?$', RedirectView.as_view(url='https://www.ietf.org/list/request.html', permanent=True)),
|
|
]
|