Merge pull request #6213 from akatsoulas/cleanup-win7

Remove obsolete code for win7
This commit is contained in:
Ryan Johnson 2024-09-04 09:36:54 -07:00 коммит произвёл GitHub
Родитель 575d1c2b18 6f8798e249
Коммит 28fa75b78b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 0 добавлений и 11 удалений

Просмотреть файл

@ -1,10 +0,0 @@
from kitsune.sumo.tests import TestCase
class TestVanityURLs(TestCase):
"""We're just asserting that these vanity URLs go somewhere."""
def test_windows7(self):
response = self.client.get("/en-US/windows7-support", follow=False)
self.assertEqual(302, response.status_code)
assert "home" in response["location"]

Просмотреть файл

@ -48,7 +48,6 @@ urlpatterns = i18n_patterns(
path("", include("kitsune.tidings.urls")),
path("", include("kitsune.users.urls")),
path("locales", sumo_views.locales, name="sumo.locales"),
re_path(r"^windows7-support(?:\\/)?$", RedirectView.as_view(url="/home/?as=u")),
re_path(
rf"wagtail/{serve_pattern.lstrip('^')}",
waffle_flag("wagtail_experiments")(wagtail_serve),