Link Search Menu Expand Document

Method: channels.toggleViewForumAsMessages

Back to methods index

Users may also choose to display messages from all topics of a forum as if they were sent to a normal group, using a “View as messages” setting in the local client: this setting only affects the current account, and is synced to other logged in sessions using this method.

Invoking this method will update the value of the view_forum_as_messages flag of channelFull or dialog and emit an updateChannelViewForumAsMessages.

Parameters:

NameTypeDescriptionRequired
channelUsername, chat ID, Update, Message or InputChannelThe forumOptional
enabledBoolThe new value of the view_forum_as_messages flag.Yes

Return type: Updates

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$Updates = $MadelineProto->channels->toggleViewForumAsMessages(channel: $InputChannel, enabled: $Bool, );