Skip to content

Commit

Permalink
add level urls
Browse files Browse the repository at this point in the history
  • Loading branch information
evemartin committed Aug 14, 2024
1 parent db86a9d commit bbb7242
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions game/python_den_urls.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
from django.conf.urls import url, include

from game.views.level import play_default_level
from game.views.level_selection import python_levels

urlpatterns = [
url(r"^$", python_levels, name="python_levels"),
url(r"^(?P<levelName>[A-Z0-9]+)/$", play_default_level, name="play_default_level"),
]

0 comments on commit bbb7242

Please sign in to comment.