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

urlpatterns = [
    path('agency-register',AgncyRegister.as_view()),
    path('agency-verify-email',AgencyemailVerifyOtp.as_view()),
    path('agency-register-resend',AgencyregisterResendOtp.as_view()),
    path('agnecy-login',Agencylogin.as_view()),
    path('agnecy-complete-profile',AgencycompleteProfile.as_view()),

    path('agency-property-request',AgencyPropertyRequest.as_view(),name='agency-property-request'),
    path('approve-property-request',ApprovePropertyRequest.as_view(),name='approve-property-request'),
    path('get-agency-notifications',AgencyNotification.as_view(),name='get-agency-notifications'),
    path('agency-delete-notifications',AgencyDeleteNotifications.as_view(),name='agency-delete-notifications'),
    path('agency-read-notifications',AgencyReadNotifications.as_view(),name='agency-read-notifications'),
    path('agency-accepted-request',AgencyAcceptedRequest.as_view(),name='agency-accepted-request'),
    path('agency-accepted-request-detail',AgencyAcceptedRequestDetail.as_view(),name='agency-accepted-request-detail'),
    path('accept-reject-request',AgencyAcceptRejectRequest.as_view(),name='accept-reject-request'),
    path('agency-login-as-user',AgencyLoginAsUser.as_view(),name='agency-login-as-user'),
    path('agency-change-password',AgencyChangePassword.as_view(),name='agency-change-password'),
    path('agency-customer-leads',AgencyCustomerLeads.as_view(),name='agency-customer-leads'),
    path('agency-dashboard',AgencyDashboard.as_view(),name='agency-dashboard'),
    path('agnecy-check-subscription-exipre',AgencyCheckSubscriptionExipre.as_view(),name='agnecy-check-subscription-expire'),


    path('agency-add-rating-review',AgencyAddRatingReview.as_view(),name='agency-add-rating-review'),
    path('agency-edit-rating-review',AgencyEditRatingReview.as_view(),name='agency-edit-rating-review'),
    path('agency-delete-rating-review',AgencyDeleteRatingReview.as_view(),name='agency-delete-rating-review'),
    path('agency-get-my-ratings',AgencyGetMyRatings.as_view(),name='agency-get-my-ratings'),
    path('agency-get-my-reviews',AgencyGetMyReviews.as_view(),name='agency-get-my-reviews'),
    path('agency-view-rating-reviews',AgencyViewRatingReviews.as_view(),name='agency-view-rating-reviews'),
    
    
    
    path('agent-customer-listing',agentCustomerListing.as_view(),name='agent-customer-listing'),
    path('create-chat-token-agency',createChatTokenAgency.as_view(),name='create-chat-token-agency'),
    path('agency-customer-chat-listing',agencyCustomerChatListing.as_view(),name='agency-customer-chat-listing'),
    path('delete-customer-agency-chat',deleteCustomerAgencyChat.as_view(),name='delete-customer-agency-chat'),

    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-agency',getFAQagency.as_view(),name='get-faq-agency'),
    
    
    path('add-agency-property',addAgencyProperty.as_view(),name='add-agency-property'),
    path('do-it-by-agency-request-list',DoItByAgencyTeamRequestList.as_view(),name='do-it-by-agency-request-list'),
    path('do-it-by-agency-request-details',DoItByAgencyTeamDetail.as_view(),name='do-it-by-agency-request-details'),
    path('listing-finalize-agency',ListingFinalizeAgency.as_view(),name='listing-finalize-agency'),
    path('complete-finalize-agency',CompleteFinalizeAgency.as_view(),name='complete-finalize-agency'),
    path('agency-add-property-project',addPropertyProject.as_view()),
	path('agency-edit-property-project',editPropertyProject.as_view()),
    path('agency-add-sale-property',addSaleProperty.as_view()),
	path('agency-edit-sale-property',editSaleProperty.as_view()),
    path('agency-add-rent-property',addPropertyRent.as_view()),
	path('agency-edit-rent-property',editPropertyRent.as_view()),
    path('agency-bussiness-for-sale',bussinessForSale.as_view()),
	path('agency-edit-bussiness-sale',editBussinessForSale.as_view()),
    path('agency-add-company-seeking-equity',addCompanySeekingEquity.as_view()),
	path('agency-update-company-seeking-equity',updateCompanySeekingEquity.as_view()),
    path('agency-add-property-developers',addPropertyDevelopers.as_view()),
	path('agency-update-property-developers',updatePropertyDevelopers.as_view()),

	path('agency-house-wanted-for-rent',houseWantedForRent.as_view()),
	path('admin-edit-house-wanted',edithouseWantedForRent.as_view()),
    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'),

]