from django.urls import path
from .views import *

urlpatterns = [
    path('register/', CustomerRegisterView.as_view(), name='customer-register'),
    path('approve-user/<int:pk>/', ApproveUserView.as_view(), name='approve-user'),
    path("auth/forgot-password/", ForgotPasswordAPIView.as_view()),
    path("auth/reset-password/", ResetPasswordAPIView.as_view()),
    path("change-password/", ChangePasswordView.as_view()),
    path("drivers/", DriverListView.as_view()),
]
