Skip to content

Commit

Permalink
Fix url path
Browse files Browse the repository at this point in the history
  • Loading branch information
KKvladys committed Dec 13, 2024
1 parent ed6b796 commit ac8d0ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cinema_service/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
urlpatterns = [
path("admin/", admin.site.urls),
path("api/cinema/", include("cinema.urls", namespace="cinema")),
path("api/user/", include("user.urls"), namespace="user"),
path("api/user/", include("user.urls", namespace="user") ),
path("__debug__/", include("debug_toolbar.urls")),

]

0 comments on commit ac8d0ef

Please sign in to comment.