Remove majordomo2 subscription form

Replace it with a redirect to lists.postgresql.org, where pglister lives.
This commit is contained in:
Magnus Hagander
2018-01-23 21:20:19 +01:00
parent 3a3ea2f5cc
commit d0aa8ac119
6 changed files with 2 additions and 82 deletions

View File

@ -49,7 +49,8 @@ urlpatterns = patterns('',
(r'^community/$', 'pgweb.core.views.community'),
(r'^community/contributors/$', 'pgweb.contributors.views.completelist'),
(r'^community/lists/$', RedirectView.as_view(url='/list/', permanent=True)),
(r'^community/lists/subscribe/$', 'pgweb.lists.views.subscribe'),
(r'^community/lists/subscribe/$', RedirectView.as_view(url='https://lists.postgresql.org/', permanent=True)),
(r'^community/lists/listinfo/$', 'pgweb.lists.views.listinfo'),
(r'^community/lists/activate/$', 'pgweb.lists.views.activate'),
(r'^community/survey/vote/(\d+)/$', 'pgweb.survey.views.vote'),