• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/controller/livefeed.php
  • Класс: BitrixSocialnetworkControllerLivefeed
  • Вызов: Livefeed::configureActions
public function configureActions(): array
{
	$configureActions = parent::configureActions();
	$configureActions['getNextPage'] = [
		'-prefilters' => [
			ActionFilterAuthentication::class,
		]
	];
	$configureActions['refresh'] = [
		'-prefilters' => [
			ActionFilterAuthentication::class,
		]
	];
	$configureActions['mobileLogError'] = [
		'-prefilters' => [
			ActionFilterAuthentication::class,
		]
	];

	return $configureActions;
}