From 60b55402fa39693e79eb82381d3e6f7443379167 Mon Sep 17 00:00:00 2001 From: zhumeisongsong Date: Tue, 17 Dec 2024 14:19:27 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20UserTasksService=20type?= =?UTF-8?q?=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/tasks/application/src/lib/user-tasks.service.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/tasks/application/src/lib/user-tasks.service.ts b/libs/tasks/application/src/lib/user-tasks.service.ts index 793b87e..85e9392 100644 --- a/libs/tasks/application/src/lib/user-tasks.service.ts +++ b/libs/tasks/application/src/lib/user-tasks.service.ts @@ -1,10 +1,9 @@ import { Injectable } from '@nestjs/common'; +import { UserTask } from '@tasks/domain'; @Injectable() export class UserTasksService { - async findMany( - userId: string, - ): Promise<[]> { + async findAll(userId: string): Promise { // TODO: Implement this return []; }