mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 08:43:09 +02:00
(fix) メールアドレス認証失敗時にメッセージを表示 (#11986)
This commit is contained in:
parent
bb9f04d586
commit
f37a3eff79
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue