exwiseapi / api /urls.py
devnamdev2003
uodated
2bb9fdd
raw
history blame
317 Bytes
from django.urls import path
from .views import UserDataPostView, GetFieldView, ContactList1
urlpatterns = [
path("post/", UserDataPostView.as_view(), name="post_user_data"),
path("<str:field>/<str:identifier>/", GetFieldView.as_view(), name="get_field_data"),
path('contact/', ContactList1.as_view()),
]