website/website/legacy/urls.py
Jake Howard 10005dfe02
Add all pages feed
This one is much simpler than the pages one, as there could be a lot of
pages
2022-08-22 23:17:16 +01:00

11 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()),
]