Remove debug call, correct app identifier
This commit is contained in:
parent
5ad1b63f76
commit
266ba2806d
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
|
||||
// Register with the capabilities API
|
||||
OC_API::register('get', '/cloud/capabilities', array('OCA\Files_Versions\Capabilities', 'getCapabilities'), 'ocs', OC_API::USER_AUTH);
|
||||
OC_API::register('get', '/cloud/capabilities', array('OCA\Files_Versions\Capabilities', 'getCapabilities'), 'files_versions', OC_API::USER_AUTH);
|
|
@ -117,7 +117,6 @@ class OC_API {
|
|||
'response' => call_user_func($action['action'], $parameters),
|
||||
);
|
||||
}
|
||||
|
||||
$response = self::mergeResponses($responses);
|
||||
$formats = array('json', 'xml');
|
||||
$format = !empty($_GET['format']) && in_array($_GET['format'], $formats) ? $_GET['format'] : 'xml';
|
||||
|
@ -249,7 +248,6 @@ class OC_API {
|
|||
*/
|
||||
private static function respond($result, $format='xml') {
|
||||
// Send 401 headers if unauthorised
|
||||
die(var_dump($result));
|
||||
if($result->getStatusCode() === self::RESPOND_UNAUTHORISED) {
|
||||
header('WWW-Authenticate: Basic realm="Authorisation Required"');
|
||||
header('HTTP/1.0 401 Unauthorized');
|
||||
|
|
Loading…
Reference in New Issue