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