Skip to content

Commit

Permalink
Include python den URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
faucomte97 committed Aug 27, 2024
1 parent a6c3a0d commit f5dac5d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions django_site/urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from django.conf.urls import include, url
from django.contrib import admin
from django.urls import path
from game import python_den_urls
from game import urls as game_urls
from portal import urls as portal_urls

Expand All @@ -14,5 +15,6 @@
url(r"^", include(portal_urls)),
path("administration/", admin.site.urls),
url(r"^rapidrouter/", include(game_urls)),
url(r"^pythonden/", include(python_den_urls)),
url(r"^versions/$", versions, name="versions"),
]

0 comments on commit f5dac5d

Please sign in to comment.