• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/notify.php
  • Класс: BitrixImNotify
  • Вызов: Notify::fetchConfirms
private function fetchConfirms(): array
{
	$confirmCollection = [];

	$nextPageIsConfirm = $this->lastType === self::CONFIRM_TYPE;
	if ($this->firstPage || $nextPageIsConfirm)
	{
		$confirmCollection = $this->requestData(self::CONFIRM_TYPE, $this->pageLimit);
	}

	return $confirmCollection;
}