refactor message broker

This commit is contained in:
sbriat 2023-03-16 10:53:48 +01:00
parent 5c5e6be23d
commit 021655c90b
4 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ export class CreateConfigurationUseCase {
try { try {
const configuration = await this._repository.create(entity); const configuration = await this._repository.create(entity);
this._messager.publish( this._messager.publish(
'create', 'configuration.create',
JSON.stringify( JSON.stringify(
this._mapper.map( this._mapper.map(
configuration, configuration,

View File

@ -19,7 +19,7 @@ export class DeleteConfigurationUseCase {
try { try {
const configuration = await this._repository.delete(command.uuid); const configuration = await this._repository.delete(command.uuid);
this._messager.publish( this._messager.publish(
'delete', 'configuration.delete',
JSON.stringify( JSON.stringify(
this._mapper.map( this._mapper.map(
configuration, configuration,

View File

@ -20,7 +20,7 @@ export class PropagateConfigurationsUseCase {
try { try {
const configurations = await this._repository.findAll(1, 999999); const configurations = await this._repository.findAll(1, 999999);
this._messager.publish( this._messager.publish(
'propagate', 'configuration.propagate',
JSON.stringify( JSON.stringify(
configurations.data.map((configuration) => configurations.data.map((configuration) =>
this._mapper.map( this._mapper.map(

View File

@ -29,7 +29,7 @@ export class UpdateConfigurationUseCase {
entity, entity,
); );
this._messager.publish( this._messager.publish(
'update', 'configuration.update',
JSON.stringify( JSON.stringify(
this._mapper.map( this._mapper.map(
configuration, configuration,