Merged PR 107: ユーザ作成時の認証メール内URL修正
## 概要 [Task1753: ユーザ作成時のメール内認証URL修正](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/1753) タスク 1753: ユーザ作成時のメール内認証URL修正 ・ユーザ作成時のメール内リンクが「mail-confirm/?~」になっているのを「mail-confirm/user/?~」に変更。 ・リンク先の動作は本タスクでは対象外。 ## レビューポイント 変更箇所が合っているか? ## UIの変更 なし ## 動作確認状況 ローカルでユニットテスト実施済み。 ユーザ作成APIを実行し、送信されたメール内のリンクが「mail-confirm/user/?~」になっていることを確認。 ## 補足 なし
This commit is contained in:
parent
3ebfe4a585
commit
d982d7e129
@ -75,7 +75,7 @@ export class SendGridService {
|
|||||||
privateKey,
|
privateKey,
|
||||||
);
|
);
|
||||||
const domains = this.configService.get<string>('APP_DOMAIN');
|
const domains = this.configService.get<string>('APP_DOMAIN');
|
||||||
const path = 'mail-confirm/';
|
const path = 'mail-confirm/user/';
|
||||||
|
|
||||||
return {
|
return {
|
||||||
subject: 'Verify your new account',
|
subject: 'Verify your new account',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user