Jake Howard
10005dfe02
This one is much simpler than the pages one, as there could be a lot of pages
10 lines
207 B
Python
10 lines
207 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "legacy"
|
|
|
|
urlpatterns = [
|
|
path("posts/index.xml", views.PostsFeedView.as_view()),
|
|
path("index.xml", views.AllPagesFeedView.as_view()),
|
|
]
|