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:

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

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

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

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!`);
  }
}

Last updated