From 150d6f1d9e3d0d2aa01777a5905ad6266ff306eb Mon Sep 17 00:00:00 2001 From: edder773 Date: Wed, 4 Dec 2024 21:16:53 +0900 Subject: [PATCH] =?UTF-8?q?[test]=20CI/CD=20=ED=85=8C=EC=8A=A4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .dockerignore | 8 -------- apps/backend/src/account/guards/hasSufficientCashGuard.ts | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 01d143c..0000000 --- a/.dockerignore +++ /dev/null @@ -1,8 +0,0 @@ -node_modules/ -dist -*.log -.git -.github -.gitignore -Dockerfile -build/ \ No newline at end of file diff --git a/apps/backend/src/account/guards/hasSufficientCashGuard.ts b/apps/backend/src/account/guards/hasSufficientCashGuard.ts index b68c27c..5776627 100644 --- a/apps/backend/src/account/guards/hasSufficientCashGuard.ts +++ b/apps/backend/src/account/guards/hasSufficientCashGuard.ts @@ -18,7 +18,7 @@ export class HasSufficientCashGuard implements CanActivate { const { tradingType, price, quantity, totalAmount } = request.body; let hasEnoughCash = false; - // 지정가 주문 확인 + // 지정가 주문 확인. if (tradingType === 'limit') { hasEnoughCash = await this.canLimitBuyOrder(price, memberId, quantity); } else if (tradingType === 'market') {