mirror of
https://gitlab.com/mobicoop/v3/service/matcher.git
synced 2026-01-01 08:12:40 +00:00
use constant for message handler
This commit is contained in:
@@ -3,13 +3,14 @@ import { RabbitSubscribe } from '@mobicoop/message-broker-module';
|
||||
import { CommandBus } from '@nestjs/cqrs';
|
||||
import { CreateAdCommand } from '@modules/ad/core/application/commands/create-ad/create-ad.command';
|
||||
import { Ad } from './ad.types';
|
||||
import { AD_CREATED_MESSAGE_HANDLER } from '@src/app.constants';
|
||||
|
||||
@Injectable()
|
||||
export class AdCreatedMessageHandler {
|
||||
constructor(private readonly commandBus: CommandBus) {}
|
||||
|
||||
@RabbitSubscribe({
|
||||
name: 'adCreated',
|
||||
name: AD_CREATED_MESSAGE_HANDLER,
|
||||
})
|
||||
public async adCreated(message: string) {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user