• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Chat.php
  • Класс: BitrixImV2Chat
  • Вызов: Chat::save
public function save(): Result
{
	$id = $this->getChatId();
	$result = $this->defaultSave();

	if (!$result->isSuccess())
	{
		return $result;
	}

	if ($id !== null)
	{
		self::cleanCache($id);
	}

	return $result;
}