fix(api): make private gateway

This commit is contained in:
yassinedorbozgithub 2025-06-19 08:47:52 +01:00
parent a4033991c1
commit d8a8ed6cfe

View File

@ -52,7 +52,7 @@ export class SubscriberService extends BaseService<
constructor( constructor(
readonly repository: SubscriberRepository, readonly repository: SubscriberRepository,
protected readonly attachmentService: AttachmentService, protected readonly attachmentService: AttachmentService,
protected readonly gateway: WebsocketGateway, private readonly gateway: WebsocketGateway,
) { ) {
super(repository); super(repository);
} }