mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
26 lines
917 B
JavaScript
26 lines
917 B
JavaScript
Picker.route('/feed.xml', function(params, req, res, next) {
|
|
if (typeof params.query.view === "undefined") {
|
|
params.query.view = 'new';
|
|
}
|
|
res.end(servePostRSS(params.query, 'feed.xml'));
|
|
});
|
|
|
|
Picker.route('/rss/posts/new.xml', function(params, req, res, next) {
|
|
res.end(servePostRSS({view: 'new'}, '/rss/posts/new.xml'));
|
|
});
|
|
|
|
Picker.route('/rss/posts/top.xml', function(params, req, res, next) {
|
|
res.end(servePostRSS({view: 'top'}, '/rss/posts/top.xml'));
|
|
});
|
|
|
|
Picker.route('/rss/posts/best.xml', function(params, req, res, next) {
|
|
res.end(servePostRSS({view: 'best'}, '/rss/posts/best.xml'));
|
|
});
|
|
|
|
Picker.route('/rss/category/:slug/feed.xml', function(params, req, res, next) {
|
|
res.end(servePostRSS({view: 'new', cat: params.slug}, '/rss/category/:slug/feed.xml'));
|
|
});
|
|
|
|
Picker.route('/rss/comments.xml', function(params, req, res, next) {
|
|
res.end(serveCommentRSS({}, '/rss/comments.xml'));
|
|
});
|