This commit is contained in:
syuilo 2017-01-17 11:37:11 +09:00
parent 988de1dd18
commit ea2a573492

View file

@ -33,6 +33,12 @@ export default async (req: express.Request, res: express.Response) => {
return;
}
// Validate password
if (password == '') {
res.sendStatus(400);
return;
}
// Fetch exist user that same username
const usernameExist = await User
.count({