rename
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { Module } from "@nestjs/common";
|
||||
import { Chat } from "./entities/ticket.entity";
|
||||
import { Chat } from "./entities/chat.entity";
|
||||
import { ChattService } from "./providers/chat.service";
|
||||
import { ChatRepository } from "./repositories/chat.repository";
|
||||
import { ChatController } from "./controller/chat.controller";
|
||||
|
||||
@@ -6,7 +6,7 @@ import { Admin } from "src/modules/admin/entities/admin.entity";
|
||||
import { FindChatQueryDto } from "../DTO/search-chat-query.dto";
|
||||
import { EntityManager } from "@mikro-orm/postgresql";
|
||||
import { UpdateChatDto } from "../DTO/update-chat.dto";
|
||||
import { Chat } from "../entities/ticket.entity";
|
||||
import { Chat } from "../entities/chat.entity";
|
||||
import { AdminService } from "src/modules/admin/providers/admin.service";
|
||||
import { UserService } from "src/modules/user/providers/user.service";
|
||||
import { EventEmitter2 } from "@nestjs/event-emitter";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { EntityManager, EntityRepository, FilterQuery } from '@mikro-orm/postgresql';
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { Chat } from '../entities/ticket.entity';
|
||||
import { Chat } from '../entities/chat.entity';
|
||||
import { FindChatQueryDto } from '../DTO/search-chat-query.dto';
|
||||
import { PaginatedResult } from 'src/common/interfaces/pagination.interface';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user