Skip to content

Commit

Permalink
user_urls_path
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Oct 22, 2023
1 parent 393e6f2 commit e8e4e3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion codeforlife/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
def service_urlpatterns(
api_urls_path: str = "api.urls",
frontend_template_name: str = "frontend.html",
user_urls_path: str = "codeforlife.user.urls",
):
urlpatterns = [
path(
Expand Down Expand Up @@ -44,7 +45,7 @@ def service_urlpatterns(
),
path(
"api/",
include("codeforlife.user.urls"),
include(user_urls_path),
name="user",
),
path(
Expand Down

0 comments on commit e8e4e3b

Please sign in to comment.