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