Fix #238
This commit is contained in:
parent
8927888174
commit
a67758e5af
1 changed files with 6 additions and 2 deletions
|
@ -33,7 +33,9 @@ export default async (req: express.Request, res: express.Response) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
if (user === null) {
|
if (user === null) {
|
||||||
res.status(404).send('user not found');
|
res.status(404).send({
|
||||||
|
error: 'user not found'
|
||||||
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,7 +55,9 @@ export default async (req: express.Request, res: express.Response) => {
|
||||||
|
|
||||||
res.sendStatus(204);
|
res.sendStatus(204);
|
||||||
} else {
|
} else {
|
||||||
res.status(400).send('incorrect password');
|
res.status(400).send({
|
||||||
|
error: 'incorrect password'
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Append signin history
|
// Append signin history
|
||||||
|
|
Loading…
Reference in a new issue