0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Fixed lint error

This commit is contained in:
Nazar Gargol 2019-07-24 16:18:44 +02:00
parent 132e278a22
commit a5990e555b

View file

@ -89,7 +89,7 @@ module.exports = {
.then(() => {
const email = frame.data.email;
return models.Invite.findOne({email: email, status: 'sent'}, frame.options)
return models.Invite.findOne({email: email, status: 'sent'}, frame.options);
});
}
}