Configure remote database connection and update documentation
This commit is contained in:
11
backend/dist/modules/conversations/conversations.resolver.d.ts
vendored
Normal file
11
backend/dist/modules/conversations/conversations.resolver.d.ts
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
import { ConversationsService } from './conversations.service';
|
||||
import { Conversation } from './entities/conversation.entity';
|
||||
import { User } from '../users/entities/user.entity';
|
||||
export declare class ConversationsResolver {
|
||||
private readonly conversationsService;
|
||||
constructor(conversationsService: ConversationsService);
|
||||
findAll(user: User): Promise<Conversation[]>;
|
||||
findOne(id: string, user: User): Promise<Conversation>;
|
||||
createConversation(user: User, participantIds: string[], name?: string): Promise<Conversation>;
|
||||
createPrivateConversation(user: User, recipientId: string): Promise<Conversation>;
|
||||
}
|
Reference in New Issue
Block a user