Merged PR 526: タスク2898:リフレッシュトークン処理の修正戻し

## 概要
[Task2933: タスク2898:リフレッシュトークン処理の修正戻し](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2933)

- 元PBI or タスクへのリンク(内容・目的などはそちらにあるはず)
- タスク2898で実施した比較演算子の修正について、バグの恒久対応が行われたので厳密等価演算子に戻しました。

## レビューポイント
- 特にありません

## UIの変更
- 無し

## 動作確認状況
- unittest + ローカル動作確認済

## 補足
- 相談、参考資料などがあれば
This commit is contained in:
masaaki 2023-10-25 06:17:01 +00:00
parent 4b812fc0b3
commit 4bedc9ec95

View File

@ -142,8 +142,8 @@ export class AuthService {
{
//ユーザーの属しているアカウントの管理者にユーザーが設定されていればadminをセットする
role: `${role} ${
user.account.primary_admin_user_id == user.id ||
user.account.secondary_admin_user_id == user.id
user.account.primary_admin_user_id === user.id ||
user.account.secondary_admin_user_id === user.id
? ADMIN_ROLES.ADMIN
: ADMIN_ROLES.STANDARD
}`,