nestjs-telegraf/lib/decorators/telegraf-action.decorator.ts

14 lines
437 B
TypeScript
Raw Normal View History

2020-03-19 17:20:13 +03:00
import { SetMetadata } from '@nestjs/common';
import { DECORATORS } from '../telegraf.constants';
import { HearsTriggers } from 'telegraf';
/**
* Registers middleware for handling callback_data actions with regular expressions.
* @param triggers Triggers
*
* https://telegraf.js.org/#/?id=action
*/
export function TelegrafAction(triggers: HearsTriggers): MethodDecorator {
return SetMetadata(DECORATORS.ACTION, { triggers });
}