feat: remove "Telegraf" prefix from decorator names

This commit is contained in:
Aleksandr Bukhalo
2020-08-14 12:42:57 +03:00
parent 05d7ae7b12
commit 0f06e4b930
30 changed files with 363 additions and 270 deletions

View File

@@ -0,0 +1,19 @@
import { SetMetadata } from '@nestjs/common';
import { DECORATORS } from '../telegraf.constants';
/**
* Handler for /settings command.
*
* @see https://telegraf.js.org/#/?id=settings
*/
export const Settings = (): MethodDecorator => {
return SetMetadata(DECORATORS.SETTINGS, {});
};
/**
* Handler for /settings command.
*
* @see https://telegraf.js.org/#/?id=settings
* @deprecated since v2, use Settings decorator instead.
*/
export const TelegrafSettings = Settings;