Added clean redirects to the game

This commit is contained in:
Walter 2025-02-14 13:28:33 +01:00
parent 19c8ca3362
commit 53a4734cae
2 changed files with 6 additions and 8 deletions

View File

@ -1,13 +1,14 @@
from django.urls import path, include from django.urls import path, include
from django.views.generic import RedirectView
from bloonsa_game.views import IndexView, TermsView, GameView, WIPView from bloonsa_game.views import IndexView, TermsView, GameView, WIPView
app_name = "bloonsa_game" app_name = "bloonsa_game"
urlpatterns = [ urlpatterns = [
path("", IndexView.as_view(), name="index"), path("", RedirectView.as_view(pattern_name="bloonsa_game:game", permanent=False), name="index"),
path("game", GameView.as_view(), name="game"), path("game", GameView.as_view(), name="game"),
path("game/<int:pk>", GameView.as_view(), name="gameSelect"), path("game/<int:pk>", GameView.as_view(), name="gameSelect"),
path("terms", TermsView.as_view(), name="terms"), # path("terms", TermsView.as_view(), name="terms"),
path("contact", WIPView.as_view(), name="contact"), # path("contact", WIPView.as_view(), name="contact"),
] ]

View File

@ -17,14 +17,11 @@ from django.contrib import admin
from django.urls import path, include, re_path from django.urls import path, include, re_path
from django.views.generic.base import RedirectView from django.views.generic.base import RedirectView
crossdomain_view = RedirectView.as_view(url='/static/bloonsa_game/misc/crossdomain.xml', permanent=True)
urlpatterns = [ urlpatterns = [
path('admin/', admin.site.urls), path("", RedirectView.as_view(pattern_name="bloonsa_game:game", permanent=False), name="index"),
path("admin/", admin.site.urls),
path("bloonsa_api/", include("bloonsa_api.urls", namespace="bloonsa_api")), path("bloonsa_api/", include("bloonsa_api.urls", namespace="bloonsa_api")),
path("a/", include("bloonsa_game.urls", namespace="bloonsa_game")), path("a/", include("bloonsa_game.urls", namespace="bloonsa_game")),
path("users/", include("users.urls", namespace="users")), path("users/", include("users.urls", namespace="users")),
re_path(r'^crossdomain\.xml$', crossdomain_view)
] ]