Skip to content
Snippets Groups Projects
Unverified Commit f37a3eff authored by かっこかり's avatar かっこかり Committed by GitHub
Browse files

(fix) メールアドレス認証失敗時にメッセージを表示 (#11986)

parent bb9f04d5
No related branches found
No related tags found
No related merge requests found
......@@ -199,10 +199,10 @@ export class ServerService implements OnApplicationShutdown {
includeSecrets: true,
}));
reply.code(200);
return 'Verify succeeded!';
reply.code(200).send('Verification succeeded! メールアドレスの認証に成功しました。');
return;
} else {
reply.code(404);
reply.code(404).send('Verification failed. Please try again. メールアドレスの認証に失敗しました。もう一度お試しください');
return;
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment