fix(api): remove the email verified middleware

This commit is contained in:
Mrugesh Mohapatra
2019-10-08 01:36:27 +05:30
committed by mrugesh
parent 2116997f85
commit e19e54a152
2 changed files with 1 additions and 34 deletions

View File

@ -55,8 +55,7 @@
"./middlewares/constant-headers": {},
"./middlewares/csp": {},
"./middlewares/flash-cheaters": {},
"./middlewares/passport-login": {},
"./middlewares/email-not-verified-notice": {}
"./middlewares/passport-login": {}
},
"files": {},
"final:after": {

View File

@ -1,32 +0,0 @@
import dedent from 'dedent';
const ALLOWED_METHODS = ['GET'];
const EXCLUDED_PATHS = [
'/signout',
'/accept-privacy-terms',
'/update-email',
'/confirm-email',
'/passwordless-change'
].reduce((list, item) => [...list, item, `/internal${item}`], []);
export default function emailNotVerifiedNotice() {
return function(req, res, next) {
if (
ALLOWED_METHODS.indexOf(req.method) !== -1 &&
EXCLUDED_PATHS.indexOf(req.path) === -1
) {
const { user } = req;
if (user && (!user.email || user.email === '' || !user.emailVerified)) {
req.flash(
'info',
dedent`
New privacy laws now require that we have an email address where we can reach
you. Please update your email address in the <a href='/settings'>settings</a>
and click the link we send you to confirm.
`
);
}
}
return next();
};
}