From 3220ae05529c4301523cb35a1e8be5a9426349d7 Mon Sep 17 00:00:00 2001 From: masaaki Date: Tue, 13 Jun 2023 09:45:30 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20157:=20accounts.repository.servic?= =?UTF-8?q?e.ts=E3=81=AE=E5=8F=82=E7=85=A7=E3=81=8C=E3=81=82=E3=82=84?= =?UTF-8?q?=E3=81=BE=E3=81=A3=E3=81=A6=E3=81=84=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task1960: accounts.repository.service.tsの参照があやまっている](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/1960) - constantsの参照についてsrcフォルダを参照しないように修正しました ## レビューポイント - 特になし ## UIの変更 - 特になし ## 動作確認状況 - ビルドが成功することを確認 ## 補足 - 相談、参考資料などがあれば --- .../src/repositories/accounts/accounts.repository.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictation_server/src/repositories/accounts/accounts.repository.service.ts b/dictation_server/src/repositories/accounts/accounts.repository.service.ts index 7b6656d..dc7fae6 100644 --- a/dictation_server/src/repositories/accounts/accounts.repository.service.ts +++ b/dictation_server/src/repositories/accounts/accounts.repository.service.ts @@ -15,7 +15,7 @@ import { getDirection, getTaskListSortableAttribute, } from '../../common/types/sort/util'; -import { LICENSE_STATUS_ISSUE_REQUESTING } from '../../../src/constants'; +import { LICENSE_STATUS_ISSUE_REQUESTING } from '../../constants'; export class AccountNotFoundError extends Error {}