Use topics:read privilege for topic filtering use cases (#7462)

* fix: use topics:read privilege for topic filtering use cases

* fix: tests

* fix: more broken tests
This commit is contained in:
Julian Lam
2019-03-16 14:51:46 -04:00
committed by GitHub
parent c20cd52854
commit 745a9589e9
16 changed files with 20 additions and 20 deletions

View File

@@ -55,7 +55,7 @@ module.exports = function (Groups) {
db.getSortedSetRevRange('group:' + groupName + ':member:pids', 0, max - 1, next);
},
function (pids, next) {
privileges.posts.filter('read', pids, uid, next);
privileges.posts.filter('topics:read', pids, uid, next);
},
function (pids, next) {
posts.getPostSummaryByPids(pids, uid, { stripTags: false }, next);