All files / src/hooks is-verified.js

100% Statements 7/7
100% Branches 4/4
100% Functions 2/2
100% Lines 7/7

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16  1x 1x   1x     10x 10x   8x 6x        
 
const errors = require('@feathersjs/errors');
const { checkContext } = require('feathers-hooks-common');
 
module.exports = isVerified;
 
function isVerified () {
  return hook => {
    checkContext(hook, 'before');
 
    if (!hook.params.user || !hook.params.user.isVerified) {
      throw new errors.BadRequest('User\'s email is not yet verified.');
    }
  };
}