feat(tags): add tags app's basic structure and endpoint

This commit is contained in:
2026-03-11 19:17:20 +08:00
parent 7152ab9aca
commit 4d66293804
10 changed files with 265 additions and 0 deletions

View File

@@ -43,6 +43,7 @@ LOCAL_APPS = [
"apps.workspaces",
"apps.clients",
"apps.projects",
"apps.tags",
]
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS

View File

@@ -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: