• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/classes/general/im_chat.php
  • Класс: CIMChat
  • Вызов: CIMChat::addChatIndex
static function addChatIndex(int $chatId, string $chatTitle)
{
	$index =
		BitrixImInternalsChatIndex::create()
			->setChatId($chatId)
			->setTitle($chatTitle)
	;
	static::fillChatIndexWithUserFullNames($index);

	BitrixImModelChatTable::addIndexRecord($index);

	return true;
}