Merged PR 543: デプロイパイプラインyamlを修正&リポジトリの修正
## 概要 [Task2995: デプロイパイプラインyamlを修正](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2995) - STGデプロイパイプラインの定義yamlについて以下の環境変数に0から具体的な値を設定しました。 - REFRESH_TOKEN_LIFETIME_WEB: 86400000 - REFRESH_TOKEN_LIFETIME_DEFAULT: 2592000000 - ACCESS_TOKEN_LIFETIME_WEB: 7200000 - ユーザーリポジトリの`findSameAccountUsers`についてentityManagerを使っていない箇所を使うように修正しました。 ## レビューポイント - 共有 ## UIの変更 - なし ## 動作確認状況 - ローカルで確認
This commit is contained in:
parent
83add51148
commit
976271ab92
@ -80,9 +80,9 @@ jobs:
|
|||||||
TENANT_NAME: xxxxxxxxxxxx
|
TENANT_NAME: xxxxxxxxxxxx
|
||||||
SIGNIN_FLOW_NAME: xxxxxxxxxxxx
|
SIGNIN_FLOW_NAME: xxxxxxxxxxxx
|
||||||
STORAGE_TOKEN_EXPIRE_TIME: 0
|
STORAGE_TOKEN_EXPIRE_TIME: 0
|
||||||
REFRESH_TOKEN_LIFETIME_WEB: 0
|
REFRESH_TOKEN_LIFETIME_WEB: 86400000
|
||||||
REFRESH_TOKEN_LIFETIME_DEFAULT: 0
|
REFRESH_TOKEN_LIFETIME_DEFAULT: 2592000000
|
||||||
ACCESS_TOKEN_LIFETIME_WEB: 0
|
ACCESS_TOKEN_LIFETIME_WEB: 7200000
|
||||||
REDIS_HOST: xxxxxxxxxxxx
|
REDIS_HOST: xxxxxxxxxxxx
|
||||||
REDIS_PORT: 0
|
REDIS_PORT: 0
|
||||||
REDIS_PASSWORD: xxxxxxxxxxxx
|
REDIS_PASSWORD: xxxxxxxxxxxx
|
||||||
|
|||||||
@ -349,7 +349,7 @@ export class UsersRepositoryService {
|
|||||||
throw new AccountNotFoundError('Account is Not Found.');
|
throw new AccountNotFoundError('Account is Not Found.');
|
||||||
}
|
}
|
||||||
|
|
||||||
const dbUsers = await this.dataSource.getRepository(User).find({
|
const dbUsers = await repo.find({
|
||||||
relations: {
|
relations: {
|
||||||
userGroupMembers: {
|
userGroupMembers: {
|
||||||
userGroup: true,
|
userGroup: true,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user