From 7da5a1fda41b0a3632e2f9dfa7a7327f6224fd6a Mon Sep 17 00:00:00 2001 From: "x.sunamoto.k" Date: Tue, 16 May 2023 23:58:15 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20111:=20=E6=AC=A1=E5=9B=9E?= =?UTF-8?q?=E3=82=B5=E3=82=A4=E3=83=B3=E3=82=A4=E3=83=B3=E3=81=AB=E3=81=8A?= =?UTF-8?q?=E3=81=91=E3=82=8B=E3=83=91=E3=82=B9=E3=83=AF=E3=83=BC=E3=83=89?= =?UTF-8?q?=E5=A4=89=E6=9B=B4=E3=81=AE=E8=A6=81=E5=90=A6=E3=82=92=E6=8C=87?= =?UTF-8?q?=E5=AE=9A=E3=81=97=E3=81=A6=E3=81=84=E3=81=AA=E3=81=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task1761: 次回サインインにおけるパスワード変更の要否を指定していない](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/1761) - パスワード変更後、ログインしようするとすると「Your password has expired.」となる事象について対応を実施。パスワード変更時「forceChangePasswordNextSignIn: false」を設定するよう修正。 ## レビューポイント - 特になし ## UIの変更 - 無し ## 動作確認状況 - ローカルで確認済 ## 補足 - 相談、参考資料などがあれば --- dictation_server/src/gateways/adb2c/adb2c.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/dictation_server/src/gateways/adb2c/adb2c.service.ts b/dictation_server/src/gateways/adb2c/adb2c.service.ts index 1a81390..8bd6fdc 100644 --- a/dictation_server/src/gateways/adb2c/adb2c.service.ts +++ b/dictation_server/src/gateways/adb2c/adb2c.service.ts @@ -150,6 +150,7 @@ export class AdB2cService { // ADB2Cのユーザのパスワードを変更する await this.graphClient.api(`/users/${externalId}`).patch({ passwordProfile: { + forceChangePasswordNextSignIn: false, password: password, }, });