fix: fixing some errors in project service and controller
This commit is contained in:
@@ -31,6 +31,9 @@ import { CheckListItemController } from "./controllers/check-list-item.controlle
|
||||
import { RemarkController } from "./controllers/remark.controller";
|
||||
import { RemarkRepository } from "./repositories/remark.repository";
|
||||
import { RemarkService } from "./providers/remark.service";
|
||||
import { AttachmentController } from "./controllers/attachment.controller";
|
||||
import { AttachmentRepository } from "./repositories/attachment.repository";
|
||||
import { AttachmentService } from "./providers/attachment.service";
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
@@ -43,7 +46,8 @@ import { RemarkService } from "./providers/remark.service";
|
||||
TaskPhaseController,
|
||||
TaskController,
|
||||
CheckListItemController,
|
||||
RemarkController
|
||||
RemarkController,
|
||||
AttachmentController
|
||||
],
|
||||
providers: [
|
||||
WorkspaceRepository,
|
||||
@@ -59,7 +63,9 @@ import { RemarkService } from "./providers/remark.service";
|
||||
CheckListItemRepository,
|
||||
CheckListItemService,
|
||||
RemarkRepository,
|
||||
RemarkService
|
||||
RemarkService,
|
||||
AttachmentRepository,
|
||||
AttachmentService
|
||||
]
|
||||
})
|
||||
export class TaskManagerModule {}
|
||||
|
||||
Reference in New Issue
Block a user