2013-02-09 15:53:54 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Tom Needham <tom@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2013-02-09 16:50:19 +04:00
|
|
|
namespace OCA\Files_Versions;
|
|
|
|
|
|
|
|
class Capabilities {
|
2013-02-09 15:53:54 +04:00
|
|
|
|
|
|
|
public static function getCapabilities() {
|
2013-02-09 16:50:19 +04:00
|
|
|
return new \OC_OCS_Result(array(
|
2013-02-09 15:53:54 +04:00
|
|
|
'capabilities' => array(
|
2013-02-10 15:41:27 +04:00
|
|
|
'files' => array(
|
2013-02-09 15:53:54 +04:00
|
|
|
'versioning' => true,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|