• Модуль: imbot
  • Путь к файлу: ~/bitrix/modules/imbot/lib/bot/supportbox.php
  • Класс: BitrixImBotBotSupportBox
  • Вызов: SupportBox::setAsRecent
static function setAsRecent(): bool
{
	$botId = self::getBotId();
	foreach (parent::getAdministrators() as $userId)
	{
		CIMMessage::getChatId($userId, $botId);

		CAllIMContactList::setRecent([
			'USER_ID' => $userId,
			'ENTITY_ID' => $botId,
		]);
	}

	return true;
}