add rss endpoint

This commit is contained in:
2026-03-26 14:32:42 +01:00
parent ef04458cd8
commit 5c7626db66
3 changed files with 46 additions and 0 deletions
+5
View File
@@ -49,6 +49,11 @@ app:get("/latest.json", function(self)
return handlers.Latesthandler(self)
end)
app:get("/latest.rss", function(self)
self.titles = page_titles
return handlers.RSShandler(self)
end)
app:get("/*", function(self)
self.titles = page_titles
return handlers.Roothandler(self)