File size: 440 Bytes
0da497e dd4466b 0da497e dd4466b | 1 2 3 4 5 6 7 8 9 10 11 12 | from django.urls import path
from .views import UserDataPostView, GetFieldView, ContactList1, CategorizeExpenseView
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()),
path("categorize/", CategorizeExpenseView.as_view(), name="categorize_expense"),
]
|