6c7679714b
* refactor: jobs and processors * refactor: storage migration processor * fix: tests * fix: code warning * chore: ignore coverage from infra * fix: sync move asset logic between job core and asset core * refactor: move error handling inside of catch * refactor(server): job core into dedicated service calls * refactor: smart info * fix: tests * chore: smart info tests * refactor: use asset repository * refactor: thumbnail processor * chore: coverage reqs
13 lines
399 B
TypeScript
13 lines
399 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));
|
|
}
|
|
}
|