Skip to content

Commit

Permalink
Fix URL patterns
Browse files Browse the repository at this point in the history
 - Add trailing slash
  • Loading branch information
empty2fill committed Mar 20, 2022
1 parent b718c86 commit 83e766c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/first/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

handler404 = 'www.views.handler404'

# path(r'admin', admin.site.urls),
# path(r'admin/', admin.site.urls),
urlpatterns = [
path(r'api', include('rest.urls')),
path(r'api/', include('rest.urls')),
path(r'', include('www.urls')),
]

0 comments on commit 83e766c

Please sign in to comment.