added middleware.guestSearchingAllowed to the actual search API call

v1.18.x
psychobunny 11 years ago
parent 542f937589
commit 34552f7fb0

@ -47,7 +47,6 @@ function searchTerm(req, res, next) {
});
}
if ((req.user && req.user.uid) || meta.config.allowGuestSearching === '1') {
async.parallel([searchPosts, searchTopics], function (err, results) {
if (err) {
return next(err);
@ -69,9 +68,6 @@ function searchTerm(req, res, next) {
topic_matches : results[1].length
});
});
} else {
res.send(403);
}
}
function upload(req, res, filesIterator, next) {
@ -166,7 +162,7 @@ module.exports = function(app, middleware, controllers) {
app.get('/user/uid/:uid', middleware.checkGlobalPrivacySettings, controllers.accounts.getUserByUID);
app.get('/get_templates_listing', getTemplatesListing);
app.get('/search/:term', searchTerm);
app.get('/search/:term', middleware.guestSearchingAllowed, searchTerm); // todo: look at this, may not belong here.
app.get('/categories/:cid/moderators', getModerators);
app.get('/recent/posts/:term?', getRecentPosts);

Loading…
Cancel
Save