Django-NotesApp/project/notes/urls.py

14 lines
409 B
Python
Raw Normal View History

2023-02-24 00:13:44 +08:00
from django.urls import include, path
from rest_framework import routers
from . import views
router = routers.DefaultRouter()
router.register(r'notes', views.NoteViewSet)
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
path('', include(router.urls)),
2023-03-29 19:37:42 +08:00
path('public_notes/', views.PublicNoteViewSet.as_view())
2023-02-24 00:13:44 +08:00
]