mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-01 15:54:53 +00:00
7 lines
219 B
Python
7 lines
219 B
Python
from django.http import HttpResponseRedirect
|
|
|
|
|
|
def mailpref(request, listname):
|
|
# Just redirect to the homepage of pglister, don't try specific lists
|
|
return HttpResponseRedirect("https://lists.postgresql.org/")
|