34d300d1da
* refactor: flatten infra folders * fix: database migrations * fix: test related import * fix: github actions workflow * chore: rename schemas to typesense-schemas
13 lines
400 B
TypeScript
13 lines
400 B
TypeScript
import { CommunicationEvent } from '@app/domain';
|
|
import { Injectable } from '@nestjs/common';
|
|
import { CommunicationGateway } from '../communication.gateway';
|
|
|
|
@Injectable()
|
|
export class CommunicationRepository {
|
|
constructor(private ws: CommunicationGateway) {}
|
|
|
|
send(event: CommunicationEvent, userId: string, data: any) {
|
|
this.ws.server.to(userId).emit(event, JSON.stringify(data));
|
|
}
|
|
}
|