feat(clients): add clients app basic structure and endpoints
This commit is contained in:
@@ -41,6 +41,7 @@ THIRD_PARTY_APPS = [
|
||||
LOCAL_APPS = [
|
||||
"apps.users",
|
||||
"apps.workspaces",
|
||||
"apps.clients",
|
||||
]
|
||||
|
||||
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
|
||||
|
||||
@@ -17,6 +17,7 @@ urlpatterns = [
|
||||
# Apps
|
||||
path("api/users/", include("apps.users.api.urls"), name="users"),
|
||||
path('api/', include('apps.workspaces.api.urls')),
|
||||
path('api/', include('apps.clients.api.urls')),
|
||||
]
|
||||
|
||||
if settings.DEBUG:
|
||||
|
||||
Reference in New Issue
Block a user