fix(): change botName to name

This commit is contained in:
Morb0 2021-01-05 12:42:41 +03:00
parent 6b89126b43
commit 5fe60dc5b2
2 changed files with 4 additions and 10 deletions

View File

@ -24,7 +24,7 @@ export interface TelegrafOptionsFactory {
export interface TelegrafModuleAsyncOptions
extends Pick<ModuleMetadata, 'imports'> {
botName?: string;
name?: string;
useExisting?: Type<TelegrafOptionsFactory>;
useClass?: Type<TelegrafOptionsFactory>;
useFactory?: (

View File

@ -14,19 +14,13 @@ import {
TelegrafOptionsFactory,
} from './interfaces';
import { TELEGRAF_MODULE_OPTIONS } from './telegraf.constants';
import {
MetadataAccessorService,
ListenersExplorerService,
} from './services';
import { MetadataAccessorService, ListenersExplorerService } from './services';
import { getBotToken, createBotFactory } from './utils';
@Global()
@Module({
imports: [DiscoveryModule],
providers: [
ListenersExplorerService,
MetadataAccessorService,
],
providers: [ListenersExplorerService, MetadataAccessorService],
})
export class TelegrafCoreModule implements OnApplicationShutdown {
constructor(
@ -57,7 +51,7 @@ export class TelegrafCoreModule implements OnApplicationShutdown {
public static forRootAsync(
options: TelegrafModuleAsyncOptions,
): DynamicModule {
const telegrafBotName = getBotToken(options.botName);
const telegrafBotName = getBotToken(options.name);
const telegrafBotProvider: Provider = {
provide: telegrafBotName,