• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Chat.php
  • Класс: BitrixImV2Chat
  • Вызов: Chat::addIndex
protected function addIndex(): self
{
	if (!$this->getChatId())
	{
		return $this;
	}

	$index = BitrixImInternalsChatIndex::create()
		->setChatId($this->getChatId())
		->setTitle(mb_substr($this->getTitle() ?? '', 0, 255))
		->setUserList($this->getUserNamesForIndex())
	;
	BitrixImModelChatTable::addIndexRecord($index);

	return $this;
}