fix(redirects): Do not add private blocks/challenges to the map

pull/16759/head
Stuart Taylor 2018-02-21 09:24:52 +00:00
parent 6276321f45
commit 65dc6e8837
1 changed files with 6 additions and 2 deletions

View File

@ -33,7 +33,8 @@ const getFirstChallenge = _.once(_getFirstChallenge);
*/
export function _cachedMap({ Block, Challenge }) {
const challenges = Challenge.find$({
order: [ 'order ASC', 'suborder ASC' ]
order: [ 'order ASC', 'suborder ASC' ],
where: { isPrivate: false }
});
const challengeMap = challenges
.map(
@ -44,7 +45,10 @@ export function _cachedMap({ Block, Challenge }) {
return hash;
}, {})
);
const blocks = Block.find$({ order: [ 'superOrder ASC', 'order ASC' ] });
const blocks = Block.find$({
order: [ 'superOrder ASC', 'order ASC' ],
where: { isPrivate: false }
});
const blockMap = Observable.combineLatest(
blocks.map(
blocks => blocks