• Модуль: messageservice
  • Путь к файлу: ~/bitrix/modules/messageservice/lib/sender/sms/rest.php
  • Класс: BitrixMessageServiceSenderSmsRest
  • Вызов: Rest::canUse
public function canUse(): bool
{
	if (Loader::includeModule('rest') && BitrixRestOAuthService::getEngine()->isRegistered())
	{
		static::$countRestApps ??= RestAppTable::getCount();

		return static::$countRestApps > 0;
	}

	return false;
}