refactor(notifications): align app structure with backend conventions

This commit is contained in:
2026-04-25 12:00:05 +03:30
parent 48bf4f5c19
commit 5f9d413a57
14 changed files with 35 additions and 10 deletions

View File

@@ -21,7 +21,7 @@ urlpatterns = [
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"),
path("api/notifications/", include("apps.notifications.urls"), name="notifications"),
path("api/notifications/", include("apps.notifications.api.urls"), name="notifications"),
]
if settings.DEBUG: