Set chat admin custom title

You can set custom title (post, job title) for admin

To set chat admin custom title, use AdminTitle class-method or .adminTitle answer/api method

AdminTitle class-method or .adminTitle answer method take arguments:

ArgumentDescriptionRequired
1

Admin title you want to set (0-16 characters, emoji are not allowed)

Required

2

Admin id

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, AdminTitle } from 'nestgram';
import { AppService } from './app.service';

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

  @OnText('change my post')
  adminTitle() {
    return new AdminTitle('the best admin').next(`Success!`);
  }
}

Last updated