from django.urls import path, re_path
from .views import *

urlpatterns = [

    path('lawyer-change-password',LawyerChangePassword.as_view(),name='lawyer-change-password'),
    path('user-contract-request', UserContractRequest.as_view(),name='user-contract-request'),
    path('user-contract-details', UserContractDetails.as_view(),name='user-contract-details'),
    path('accept-reject-user-contract-request', AcceptRejectUserContractRequest.as_view(),name='accept-reject-user-contract-request'),
    path('lawyer-subscription-expires',LawyerSubscriptionExpires.as_view(),name='lawyer-subscription-expires'),
    path('lawyer-verify-email',LawyeremailVerifyOtp.as_view()),
    path('lawyer-register-resend',LawyerregisterResendOtp.as_view()),



    path('lawyer-add-rating-review',LawyerAddRatingReview.as_view(),name='lawyer-add-rating-review'),
    path('lawyer-edit-rating-review',LawyerEditRatingReview.as_view(),name='lawyer-edit-rating-review'),
    path('lawyer-delete-rating-review',LawyerDeleteRatingReview.as_view(),name='lawyer-delete-rating-review'),
    path('lawyer-get-my-ratings',LawyerGetMyRatings.as_view(),name='lawyer-get-my-ratings'),
    path('lawyer-get-my-reviews',LawyerGetMyReviews.as_view(),name='lawyer-get-my-reviews'),
    path('lawyer-view-rating-reviews',LawyerViewRatingReviews.as_view(),name='lawyer-view-rating-reviews'),


    path('lawyer-converstation-token',lawyerConverstationToken.as_view(),name="lawyer-converstation-token"),
    path('lawyer-converstation-listing',lawyerConverstationListing.as_view(),name="lawyer-converstation-listing"),
    path('lawyer-converstation-delete',lawyerConverstationDelete.as_view(),name="lawyer-converstation-delete"),
    
    
    path('get-privacy-policy',getPrivacyPolicy.as_view(),name='get-privacy-policy'),
    path('get-terms-conditions',getTermsCondition.as_view(),name='get-terms-conditions'),
    path('get-faq-lawyer',getFAQLawyer.as_view(),name='get-faq-lawyer'),
    path('listing-finalize-lawyer',ListingFinalizeLawyer.as_view(),name='listing-finalize-lawyer'),
    path('complete-finalize-lawyer',CompleteFinalizeLawyer.as_view(),name='complete-finalize-lawyer'),
    path('create-converstation-customer',createConverstationCustomer.as_view(),name='create-converstation-customer'),
	path('create-token',createToken.as_view(),name='create-token'),
	path('customer-converstation-listing',customerConverstationListing.as_view(),name='customer-converstation-listing'),
	path('agency-converstation-listing',AgencyConverstationListing.as_view(),name='agency-converstation-listing'),
	path('lawyer-converstation-listing',LawyerConverstationListing.as_view(),name='lawyer-converstation-listing'),


    path('lawyer-property-request',LawyerPropertyRequest.as_view(),name='lawyer-property-request'),
    path('approve-property-request',ApprovePropertyRequest.as_view(),name='approve-property-request'),


    path('create-do-it-lawyer-contract',DoItLawyerContract.as_view(),name='create-do-it-lawyer-contract'),
    


    

]