Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-04-30 21:39:45 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-05-01 09:38:59 +0300
commitd40afac1b9e9fe4bb7b64d2c5014a9ba6edb8957 (patch)
tree80305ebb6bbfa93f697c262259aff615e821874d /apps/files_versions/appinfo/info.xml
parentc8cb42fd2671c8b6ed3257e62fa9f6a24474acb8 (diff)
Add version collection to DAV
listed as versions/<username>/versions/<file id>/<timastamp> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files_versions/appinfo/info.xml')
-rw-r--r--apps/files_versions/appinfo/info.xml9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/files_versions/appinfo/info.xml b/apps/files_versions/appinfo/info.xml
index 8f7e4d7b716..3edce7775fc 100644
--- a/apps/files_versions/appinfo/info.xml
+++ b/apps/files_versions/appinfo/info.xml
@@ -8,7 +8,7 @@
This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.
In addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation.
</description>
- <version>1.7.0</version>
+ <version>1.7.1</version>
<licence>agpl</licence>
<author>Frank Karlitschek</author>
<author>Bjoern Schiessle</author>
@@ -16,6 +16,7 @@
<default_enable/>
<types>
<filesystem/>
+ <dav/>
</types>
<documentation>
<user>user-versions</user>
@@ -34,4 +35,10 @@
<command>OCA\Files_Versions\Command\CleanUp</command>
<command>OCA\Files_Versions\Command\ExpireVersions</command>
</commands>
+
+ <sabre>
+ <collections>
+ <collection>OCA\Files_Versions\Sabre\RootCollection</collection>
+ </collections>
+ </sabre>
</info>