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

	foreach ($relations as $relation)
	{
		if ($relation->getManager() ?? false)
		{
			$userIds[] = $relation->getUserId();
		}
	}

	return $userIds;
}