Files
goodtimes/manage_cms/api/urls.py
rizwanisready 01469b41c6 notifications
2024-03-13 18:25:54 +05:30

19 lines
732 B
Python

from django.urls import path
from . import views
app_name = "manage_cms_api"
urlpatterns = [
path('news-article-mobile/', views.NewsAndArticlesView.as_view(), name='news_article_mobile'),
path('newsletter-mobile/', views.NewsLettersView.as_view(), name='newsletter_mobile'),
path('faq-mobile/', views.FaqView.as_view(), name='faq_mobile'),
path('organization-mobile/', views.OrganizationView.as_view(), name='organization_mobile'),
path('education/video/', views.EducationVideoView.as_view(), name='education_video'),
path('education/material/', views.EducationMaterialView.as_view(), name='education_material'),
path('education/tags/', views.EducationTagsView.as_view(), name='education_tags'),
]