12 lines
378 B
Python
12 lines
378 B
Python
"""News app urlpatterns for backoffice"""
|
|
from django.urls import path
|
|
from news import views
|
|
|
|
app_name = 'news'
|
|
|
|
urlpatterns = [
|
|
path('', views.NewsBackOfficeLCView.as_view(), name='list-create'),
|
|
path('<int:pk>/', views.NewsBackOfficeRUDView.as_view(),
|
|
name='retrieve-update-destroy'),
|
|
path('types/', views.NewsTypeListView.as_view(), name='type-news'),
|
|
] |