ログ追加

This commit is contained in:
rca 2024-07-15 23:35:48 +09:00
parent 0d594df96f
commit aa8cd6e0c1

View File

@ -26,6 +26,7 @@ router.post('/login', (req: Request, res: Response) => {
// フィールドにcodeがあるか確認
if (req.body.code) {
// codeがある場合はcodeでログイン
logger.info("Login with code");
const { code } = req.body;
loginUserWithCode(code)
.then((token: String | null) => {