From d982d7e1295c91b1ff494f58ec8635093ad88528 Mon Sep 17 00:00:00 2001 From: "oura.a" Date: Tue, 16 May 2023 00:15:38 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20107:=20=E3=83=A6=E3=83=BC?= =?UTF-8?q?=E3=82=B6=E4=BD=9C=E6=88=90=E6=99=82=E3=81=AE=E8=AA=8D=E8=A8=BC?= =?UTF-8?q?=E3=83=A1=E3=83=BC=E3=83=AB=E5=86=85URL=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [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/?~」になっていることを確認。 ## 補足 なし --- dictation_server/src/gateways/sendgrid/sendgrid.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictation_server/src/gateways/sendgrid/sendgrid.service.ts b/dictation_server/src/gateways/sendgrid/sendgrid.service.ts index c1975b5..b3eff66 100644 --- a/dictation_server/src/gateways/sendgrid/sendgrid.service.ts +++ b/dictation_server/src/gateways/sendgrid/sendgrid.service.ts @@ -75,7 +75,7 @@ export class SendGridService { privateKey, ); const domains = this.configService.get('APP_DOMAIN'); - const path = 'mail-confirm/'; + const path = 'mail-confirm/user/'; return { subject: 'Verify your new account',