server: fix auth 500 errors
This commit is contained in:
parent
871b57ea3c
commit
6de415ed99
1 changed files with 10 additions and 2 deletions
|
@ -80,7 +80,11 @@ auth.post(
|
|||
|
||||
res.status(201).json({ token: token, userId: created_user.id })
|
||||
} catch (e) {
|
||||
next(e)
|
||||
res.status(401).json({
|
||||
error: {
|
||||
message: e.message,
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
)
|
||||
|
@ -116,7 +120,11 @@ auth.post(
|
|||
throw errorToThrow
|
||||
}
|
||||
} catch (e) {
|
||||
next(e)
|
||||
res.status(401).json({
|
||||
error: {
|
||||
message: error,
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue