From 36401d05421b2d262795eb99059f202d8b5dac0d Mon Sep 17 00:00:00 2001 From: "maruyama.t" Date: Tue, 14 Nov 2023 13:27:28 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20579:=20pipeline=E4=B8=8D=E5=85=B7?= =?UTF-8?q?=E5=90=88=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task3086: pipeline不具合対応](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/3086) - 元PBI or タスクへのリンク(内容・目的などはそちらにあるはず) - 何をどう変更したか、追加したライブラリなど - このPull Requestでの対象/対象外 - 影響範囲(他の機能にも影響があるか) ## レビューポイント - 特にレビューしてほしい箇所 - 軽微なものや自明なものは記載不要 - 修正範囲が大きい場合などに記載 - 全体的にや仕様を満たしているか等は本当に必要な時のみ記載 ## UIの変更 - Before/Afterのスクショなど - スクショ置き場 ## 動作確認状況 - ローカルで確認、develop環境で確認など ## 補足 - 相談、参考資料などがあれば --- dictation_server/src/features/files/files.controller.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dictation_server/src/features/files/files.controller.ts b/dictation_server/src/features/files/files.controller.ts index f9ec041..20e05f0 100644 --- a/dictation_server/src/features/files/files.controller.ts +++ b/dictation_server/src/features/files/files.controller.ts @@ -39,15 +39,11 @@ import { retrieveAuthorizationToken } from '../../common/http/helper'; import { Request } from 'express'; import { makeContext } from '../../common/log'; import { makeErrorResponse } from '../../common/error/makeErrorResponse'; -import { LicensesService } from '../licenses/licenses.service'; @ApiTags('files') @Controller('files') export class FilesController { - constructor( - private readonly filesService: FilesService, - private readonly licensesService: LicensesService, - ) {} + constructor(private readonly filesService: FilesService) {} @ApiResponse({ status: HttpStatus.OK,