Files
goodtimes/manage_cms/api/urls.py

19 lines
732 B
Python
Raw Permalink Normal View History

2024-02-29 13:25:50 +05:30
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'),
2024-03-13 18:25:54 +05:30
2024-02-29 13:25:50 +05:30
]