1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 09:41:35 +02:00

Remove some old test logs that expose info to console

This commit is contained in:
TheArcaneBrony 2022-08-08 23:23:04 +02:00 committed by Madeline
parent 9a094da14d
commit 46c072333b
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47
2 changed files with 0 additions and 3 deletions

View File

@ -21,7 +21,6 @@ router.post(
const { login, password, captcha_key, undelete } = const { login, password, captcha_key, undelete } =
req.body as LoginSchema; req.body as LoginSchema;
const email = adjustEmail(login); const email = adjustEmail(login);
console.log("login", email);
const config = Config.get(); const config = Config.get();

View File

@ -205,8 +205,6 @@ router.post(
await Invite.joinGuild(user.id, body.invite); await Invite.joinGuild(user.id, body.invite);
} }
console.log("register", body.email, body.username, ip);
return res.json({ token: await generateToken(user.id) }); return res.json({ token: await generateToken(user.id) });
}, },
); );