diff options
Diffstat (limited to 'pydis_site/apps')
-rw-r--r-- | pydis_site/apps/redirect/views.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pydis_site/apps/redirect/views.py b/pydis_site/apps/redirect/views.py index 21180cdf..9dc9881a 100644 --- a/pydis_site/apps/redirect/views.py +++ b/pydis_site/apps/redirect/views.py @@ -6,7 +6,9 @@ from django.views.generic import RedirectView class CustomRedirectView(RedirectView): """Extended RedirectView for manual route args.""" - permanent = True + # We want temporary redirects for the time being, after this is running on prod and + # stable we can enable permanent redirects. + permanent = False static_args = () prefix_redirect = False |