mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-17 18:10:42 +01:00
new route to get recent posts
This commit is contained in:
@@ -64,6 +64,8 @@
|
||||
"posted": "posted",
|
||||
"in": "in",
|
||||
|
||||
"norecentposts": "No Recent Posts",
|
||||
"norecenttopics": "No Recent Topics",
|
||||
"recentposts": "Recent Posts",
|
||||
"recentips": "Recently Logged In IPs",
|
||||
|
||||
|
||||
@@ -276,6 +276,17 @@ var path = require('path'),
|
||||
});
|
||||
});
|
||||
|
||||
app.get('/recent/posts/:term?', function (req, res, next) {
|
||||
var uid = (req.user) ? req.user.uid : 0;
|
||||
posts.getRecentPosts(uid, 0, 19, req.params.term, function (err, data) {
|
||||
if(err) {
|
||||
return next(err);
|
||||
}
|
||||
|
||||
res.json(data);
|
||||
});
|
||||
});
|
||||
|
||||
app.get('/recent/:term?', function (req, res, next) {
|
||||
var uid = (req.user) ? req.user.uid : 0;
|
||||
topics.getLatestTopics(uid, 0, 19, req.params.term, function (err, data) {
|
||||
|
||||
Reference in New Issue
Block a user