summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlxf <sng@luxagraf.net>2022-06-06 21:09:21 -0400
committerlxf <sng@luxagraf.net>2022-06-06 21:09:21 -0400
commitc7574f7295f39ad3ad04d4d78ea182822576607f (patch)
treec5660faa5f828fc6b337c07883d213648c8dd4fd
parent57c221a6fc45db6bb5bf5b37b8a083480c7f10a9 (diff)
base: chnged RSS feed to only jrnl entries
-rw-r--r--config/base_urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/base_urls.py b/config/base_urls.py
index e77f4f5..6e4e624 100644
--- a/config/base_urls.py
+++ b/config/base_urls.py
@@ -16,7 +16,7 @@ import products.views
from locations.views import MapDataList
#from income.views import MonthlyInvoiceView, DownloadMonthlyInvoiceView
-from posts.views import PostRSSFeedView
+from posts.jrnl_views import JrnlRSSFeedView
admin.autodiscover()
@@ -37,7 +37,7 @@ urlpatterns = [
path(r'planner/', include('planner.urls')),
path(r'luximages/insert/', utils.views.insert_image),
path(r'luxproduct/insert/', products.views.insert_products),
- path(r'feed.xml', PostRSSFeedView(),name="feed"),
+ path(r'feed.xml', JrnlRSSFeedView(),name="feed"),
path(r'sitemap.xml', sitemap, {'sitemaps': sitemaps}),
path(r'links/', include('links.urls')),
path(r'jrnl/', include('posts.urls.jrnl_urls', namespace='jrnl')),