• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Chat.php
  • Класс: BitrixImV2Chat
  • Вызов: Chat::getMuteList
protected function getMuteList(): array
{
	$selfRelation = $this->getSelfRelation();

	if ($selfRelation === null)
	{
		return [];
	}

	if ($selfRelation->getNotifyBlock() ?? false)
	{
		return [$this->getContext()->getUserId()];
	}

	return [];
}