2026-02-20 16:37:48 -05:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
2026-03-11 13:59:43 -04:00
|
|
|
path('notes/', views.NotesAPI.as_view(), name='api_notes'),
|
|
|
|
|
path('notes/<uuid:note_id>/', views.NoteDetailAPI.as_view(), name='api_note_detail'),
|
|
|
|
|
path('notes/<uuid:note_id>/items/', views.NoteItemsAPI.as_view(), name='api_note_items'),
|
2026-03-01 21:44:30 -05:00
|
|
|
path('users/', views.UserSearchAPI.as_view(), name='api_users'),
|
2026-02-20 16:37:48 -05:00
|
|
|
]
|