from django.contrib import admin
from django.urls import path
from base import views
# from .message import messageAPIView
from django.conf import settings
# from django.conf.urls.static import static
urlpatterns = [
    path('v1/user_register/', views.UserRegisterAPIView.as_view(),name='user_register'),
    path('v1/user_data/', views.ShowdataAPIView.as_view(),name='user_data'),
    path('v1/user_login/', views.UserLoginAPIView.as_view(),name='user_login'),
    path('v1/verifyOTP/', views.verifyOTPView.as_view(),name='verifyOTP'),
    path('v1/social_login/', views.SocialLoginAPIView.as_view(),name='social_login'),
    path('v1/resend_otp/', views.ResendOtpAPIView.as_view(),name='resend_otp'),
    path('v1/countrycode_api/', views.CountryAPIView.as_view(),name='countrycode_api'),
    path('v1/subscription_tab/', views.SubscriptionAPIView.as_view(),name='subscription_tab'),
    path('v1/magazine_profile/', views.MagazineProfileAPIView.as_view(),name='magazine_profile'),
    path('v1/master_currency/', views.MasterCurrencyAPIView.as_view(),name='master_currency'),
    path('v1/magazine_contactus/', views.MagazineContactsAPIView.as_view(),name='magazine_contactus'),
    # path('v1/check_otp_number/', views.CheckOtpView.as_view(),name='check_otp_number'),



]