import { Body, Controller, Post } from '@nestjs/common'; @Controller('channels') export class ChannelsController { @Post() create(@Body() body: Record) { return { status: 'todo', action: 'create-channel', received: body }; } }