Nestgram
  • ⭐About Nestgram
  • 📄Guide
  • 📰News
  • đŸ”ŧHandling updates
    • Handling commands
    • Handling text messages
    • Handling other updates
    • Entities: url, email and other
    • Other arguments in handler
    • Handling media files and download it
  • đŸĒļNestgram Features
    • Services
    • Middlewares and Params
    • Sending messages correctly
    • Answer class
    • Scopes
    • States
    • Views
  • đŸ’ŦMessages
    • Sending a photo, video and other media
    • Sending a media group
    • Send location (live) or venue
    • Send contact
    • Send poll
    • Send dice
    • Edit/delete messages
    • Copy or Forward a message
  • âŒ¨ī¸Keyboards
    • Keyboard types, building keyboard
    • Handle underTheMessage keyboard button click by Alert or Toast
    • Keyboard layouts
  • âš™ī¸Config
    • CLI
    • Webhooks and run config
    • Api class
    • Modules
      • Mongo module
    • Controller Helper class
  • 🤖API Reference
    • Set chat action
    • Save user profile photo
    • Ban, unban user or chat
    • Restrict or Promote user
    • Set chat permissions
    • Set chat admin custom title
    • Chat invite links
    • Join requests
    • Update chat info, photo, title, description and more
    • Pin or unpin messages
    • Get chat info, leave chat
    • Check user subscription
    • Chat sticker set
    • My commands
    • My default admin rights
    • Menu button
Powered by GitBook
On this page
  • Set my commands
  • Delete my commands
  • Get my commands
  • Example
  1. API Reference

My commands

You can set/delete/get my bot commands

Set my commands

To set my commands, use MyCommands class-method or .setMyCommands answer/api method

MyCommands class-method take arguments:

Argument
Description
Required
1

Required

2

Optional

3

Language code

Optional

If you want to know what arguments an API method takes, see the IDE hint

Delete my commands

To delete my commands, use DeleteMyCommands class-method or .deleteMyCommands answer/api method

DeleteMyCommands class-method or .deleteMyCommands answer method take arguments:

Argument
Description
Required
1

Optional

2

Language code

Optional

If you want to know what arguments an API method takes, see the IDE hint

Get my commands

To get my commands, use .getMyCommands answer/api method

.getMyCommands answer method take arguments:

Argument
Description
Required
1

Optional

2

Language code

Optional

If you want to know what arguments an API method takes, see the IDE hint

Example

app.controller.ts
import { Controller, OnCommand, MyCommands, DeleteMyCommands, GetAnswer, Answer } from 'nestgram';
import { AppService } from './app.service';

@Controller()
export class AppController {
  constructor(private readonly appService: AppService) {}

  @OnCommand('start')
  setMyCommands() {
    return new MyCommands([
      { command: 'start', description: 'Start bot' },
      { command: 'help', description: 'Get help' },
    ]).next('My commands updated!');
  }

  @OnCommand('delete_commands')
  deleteMyCommands() {
    return new DeleteMyCommands();
  }

  @OnCommand('get_commands')
  async getMyCommands(@GetAnswer() answer: Answer) {
    console.log(await answer.getMyCommands());
    return 'Logged to console';
  }
}
PreviousChat sticker setNextMy default admin rights

Last updated 2 years ago

Commands you want to set (array of )

for which you want to set commands to

for which you want to delete commands to

you want to get commands

Returns array of on success

🤖
IBotCommand
IBotCommand
Scope
Scope
Scope