mirror of
https://github.com/nextcloud/server.git
synced 2026-05-21 09:35:30 -04:00
14 lines
272 B
PHP
14 lines
272 B
PHP
<?php
|
|
|
|
class OC_OCS_Config {
|
|
|
|
public static function apiConfig($parameters){
|
|
$xml['version'] = '1.7';
|
|
$xml['website'] = 'ownCloud';
|
|
$xml['host'] = OCP\Util::getServerHost();
|
|
$xml['contact'] = '';
|
|
$xml['ssl'] = 'false';
|
|
return new OC_OCS_Result($xml);
|
|
}
|
|
|
|
}
|