но мне почему то приходит 204 пустой респонс. Где я накосячил? в упор не вижу уже
export const createUser = async ctx => {
ctx.body = await bcrypt.hash(ctx.request.body.password, 10, (err, hash) =>
User.find({ email: ctx.request.body.email })
.exec()
.then(user => {
if (user.length >= 1) {
ctx.throw(409, 'Mail already used');
}
if (err) {
ctx.throw(500, err);
}
const USER = new User({
_id: new mongoose.Types.ObjectId(),
email: ctx.request.body.email,
password: hash,
});
USER.save().then(result => ({ message: 'User created!', user: result }));
})
.catch(er => ({
message: 'hello world',
err: er,
})),
);
};
Проверяй мидлварь, если есть.
Я вот не понимаю почему ты не юзаешь async/await если у тебя функция объявлена асинхронной ?
Обсуждают сегодня