Sort url paths

This commit is contained in:
2024-06-03 18:18:58 +02:00
parent 15997bd5af
commit cd804f2c77
2 changed files with 40 additions and 40 deletions

View File

@ -23,10 +23,10 @@ from graphene_django.views import GraphQLView
urlpatterns = [
path("", RedirectView.as_view(url="/tracker")),
path("graphql", csrf_exempt(GraphQLView.as_view(graphiql=True))),
path("login/", auth_views.LoginView.as_view(), name="login"),
path("logout/", auth_views.LogoutView.as_view(), name="logout"),
path("tracker/", include("games.urls")),
path("graphql", csrf_exempt(GraphQLView.as_view(graphiql=True))),
]
if settings.DEBUG: