from django.urls import path
from .views import *
urlpatterns = [
    path('register/', RegistrationAPIView.as_view(), name='register'),
    path('login/', LoginView.as_view(), name='login'),
    path('logout/', LogoutAPIView.as_view(), name='logout'),
    path('profile/', UserProfileAPIView.as_view(), name='profile'),
    path('profile/<int:pk>/', UserProfileAPIView.as_view(), name='edit-profile'),
    path('user-list/', UserListAPIView.as_view(), name='user-list'),
    path('change-password/', ChangePasswordAPIView.as_view(), name='change_password'),       
    # path("user-bulk-upload/", BulkUserUploadAPIView.as_view(), name="user-bulk-upload"),
]
