Internal
Public Access
Features: - Django-based REST API with web interface - Task management with tags, priorities, and due dates - Time tracking with start/stop timers - Subtasks support - Task filtering (all, today, upcoming, overdue, completed) - Tag-based organization with color coding - Sorting by due date and priority - Auto-assign tags when filtering - Responsive 3-pane layout (sidebar, task list, detail panel) - Task sharing between users - Mobile-responsive design with dark mode support 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
16 lines
603 B
Python
16 lines
603 B
Python
"""
|
|
Notification URLs for KeepItGoing.
|
|
"""
|
|
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
# API URLs (to be included under /api/notifications/)
|
|
api_urlpatterns = [
|
|
path('', views.NotificationListAPIView.as_view(), name='api-notification-list'),
|
|
path('<uuid:notification_id>/read/', views.mark_read, name='api-notification-read'),
|
|
path('read-all/', views.mark_all_read, name='api-notification-read-all'),
|
|
path('unread-count/', views.unread_count, name='api-notification-unread-count'),
|
|
path('<uuid:notification_id>/', views.delete_notification, name='api-notification-delete'),
|
|
]
|