mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-10 21:27:01 +00:00
Remove some old test logs that expose info to console
This commit is contained in:
@@ -19,7 +19,6 @@ export interface LoginSchema {
|
||||
router.post("/", route({ body: "LoginSchema" }), async (req: Request, res: Response) => {
|
||||
const { login, password, captcha_key, undelete } = req.body as LoginSchema;
|
||||
const email = adjustEmail(login);
|
||||
console.log("login", email);
|
||||
|
||||
const config = Config.get();
|
||||
|
||||
|
||||
@@ -166,8 +166,6 @@ router.post("/", route({ body: "RegisterSchema" }), async (req: Request, res: Re
|
||||
await Invite.joinGuild(user.id, body.invite);
|
||||
}
|
||||
|
||||
console.log("register", body.email, body.username, ip);
|
||||
|
||||
return res.json({ token: await generateToken(user.id) });
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user