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
  • Restrict chat member
  • Promote chat member
  1. API Reference

Restrict or Promote user

You can restrict or promote chat member

Restrict chat member

To restrict chat member, use Restrict class-methods or .restrict answer/api method

Restrict class-method or .restrict answer method take arguments:

Argument
Description
Required
1

Required

2

User id you want to restrict

Optional. Current user id by default

3

Chat id in which user you want to restrict is located

Optional. Current chat id by default

4

Until date (unix date)

Optional

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

NestgramDefault.chatPermissions is chat permissions by default

app.controller.ts
import { Controller, OnText, Restrict } from 'nestgram';
import { AppService } from './app.service';

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

  @OnText('restrict me')
  restrict() {
    return new Restrict({
      ...NestgramDefault.chatPermissions,
      can_send_messages: true,
      can_send_polls: false,
    }).next(`You're restricted!`);
  }
}

Promote chat member

Promote class-method or .promote answer method take arguments:

Argument
Description
Required
1

Required

2

User id you want to promote

Optional. Current user id by default

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

app.controller.ts
import { Controller, OnText, Promote } from 'nestgram';
import { AppService } from './app.service';

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

  @OnText('promote me')
  promote() {
    return new Promote({
      can_delete_messages: false,
    }).next(`You're promoted!`);
  }
}
PreviousBan, unban user or chatNextSet chat permissions

Last updated 2 years ago

you want to set

To promote chat member, use Promote class-method or .promote answer/api method. It takes as 1st argument, and user id you want to restrict in the current chat (optional) as 2nd argument

🤖
permissions
Permissions
Permissions