from django.urls import path,re_path
from django.conf import settings
from django.conf.urls.static import static
from panel_api.views import * 


urlpatterns = [
	
	path('upload-images',UploadImages.as_view(),name='upload-images'),
	path('user-register',UserRegister.as_view(), name='user-register'),
	path('login-through',LoginThroughProxy.as_view(),name='login-through'),
	path('user-login',LoginUser.as_view(),name='user-login'),
    path('user-forget-password',userForgetPassword.as_view(),name ='user-forget-password'),
    path('verify-forget-password-otp',verifyForgetPasswordOTP.as_view(),name='verify-forget-password-otp'),
    path('change-password',changeForgetPassword.as_view(),name='change-password'),
	path('update-user-profile',UpdateUserProfile.as_view(),name='update-user-profile'),
	path('add-product',AddProduct.as_view(),name='add-product'),
	path('get-product-listing',GetProductListing.as_view(),name='get-product-listing'),
	path('upload-product-sample', UploadProductSample.as_view(), name='upload-product-sample'),
	path('product-detail', GetProductDetail.as_view(), name='product_detail'),
	path('change-product-status',ChangeProductStatus.as_view(),name='change-product-status'),
	path('get-shoots',GetShoots.as_view(),name='get-shoots'),
	path('get-users-list',GetAssignUsers.as_view(),name='get-users-list'),
	path('assign-user',AssignUser.as_view(),name='assign-user'),
	path('get-user-activity',GetUserActivity.as_view(),name='get-user-activity'),
	path('update-order-index',UpdateOrderIndex.as_view(),name='update-order-index'),
	path('send-recape',SendMonthlyRecap.as_view(),name='send-recape'),
	path('dashboard-summary',DashboardSummary.as_view(),name='dashboard-summary'),
	path('bulk-update-products',BulkUpdateProducts.as_view(),name='bulk-update-products'),
	path('assign-product-review',AssignProductReview.as_view(),name='assign-product-review'),
 
 
	path('client-login',ClientLogin.as_view(),name='client-login'),
	path('update-password',UpdatePassword.as_view(),name='update-password'),
	path('my-assigned-review',MyAssignedReview.as_view(),name='my-assigned-review'),
	path('my-assigned-review-details',MyAssignedReviewDetails.as_view(),name='my-assigned-review-details'),
	path('client-update-profile',ClientUpdateProfile.as_view(),name='client-update-profile'),
 
	path('add-comment',AddComment.as_view(),name='add-comment'),
	path('get-comments',GetComments.as_view(),name='get-comments'),
	path('get-image-data',GetImageData.as_view(),name='get-image-data'),
 
	path('read-commment-notifications',ReadCommentNotifications.as_view(),name='read-commment-notifications'),
 
	path('get-notifications',GetNotifications.as_view(),name='get-notifications'),
 
	path('get-notification-count',GetNotificationCount.as_view(),name='get-notification-count'),
	path('read-notification',ReadNotification.as_view(),name='read-notification'),
 
 
	path('archive-unarchive-product',ArchiveUnarchiveProduct.as_view(),name='archive-unarchive-product'),
	path('drop-undrop-product',DropUndropProduct.as_view(),name='drop-undrop-product'),
 
 
	path('ready-for-client-review',readyClientReview.as_view(),name='ready-for-client-review'),
 
	path('retoucher-job-listing',retoucherJobListing.as_view(),name='retoucher-job-listing'),
 
 
	path('my-cred-settings',myCredSettings.as_view(),name='my-cred-settings'),
 
	path('logout-user',logoutUser.as_view(),name='logout-user'),
 
	path('create-collection',createCollection.as_view(),name='create-collection'),
 
	path('add-to-collection',addToCollection.as_view(),name='add-to-collection'),
 
	path('delete-collection',deleteCollection.as_view(),name='delete-collection'),
 
	path('change-client-view-status',changeClientViewStatus.as_view(),name='change-client-view-status'),
 
 
	path('add-watchers',addWatchers.as_view(),name='add-watchers'),
 
	path('bulk-approve',bulkApprove.as_view(),name='bulk-approve'),

	path('delete-product/<str:tm_article_number>', DeleteProductByArticle.as_view(), name='delete-product'),
	path('reset-password',ResetPassword.as_view(),name='reset-password'),
	path('resend-otp',ResendOTP.as_view(),name='resend-otp'),
	path('get-all-user',getAllUsers.as_view(),name='get-all-user'),
	path('delete-user',deleteUser.as_view(),name='delete-user'),
	path('create-user',createUser.as_view(),name='create-user'),
    
    

    
 
 
 
 
 
 
 
	
 


   
]

