We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 40e5b63 + 7cd6d1d commit b3fae30Copy full SHA for b3fae30
config/urls.py
@@ -8,8 +8,10 @@
8
9
urlpatterns = [
10
path('admin/', admin.site.urls),
11
- path('user/', include("dideban.user.api.v1.rest.urls"), name="user"),
12
- path('team/', include("dideban.team.api.v1.rest.urls"), name="team"),
+ path('api/v1/', include([
+ path('users/', include("dideban.user.api.v1.rest.urls"), name="user"),
13
+ path('teams/', include("dideban.team.api.v1.rest.urls"), name="team"),
14
+ ])),
15
]
16
17
if settings.DEBUG:
0 commit comments