-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathinfo.xml
52 lines (45 loc) · 1.49 KB
/
info.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="utf-8"?>
<!--
- SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>files_lock</id>
<name>Temporary files lock</name>
<summary>Temporary lock your files</summary>
<description><![CDATA[
Allow your users to temporary lock their files to avoid conflicts while working on shared files.
]]>
</description>
<version>30.0.0</version>
<licence>agpl</licence>
<author>Maxence Lange</author>
<namespace>FilesLock</namespace>
<types>
<filesystem/>
<dav/>
</types>
<documentation>
<admin>https://github.com/nextcloud/files_lock/blob/main/README.md</admin>
</documentation>
<category>tools</category>
<category>files</category>
<website>https://github.com/nextcloud/files_lock</website>
<bugs>https://github.com/nextcloud/files_lock/issues</bugs>
<repository>https://github.com/nextcloud/files_lock.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/files_lock/main/screenshots/0.7.0.png</screenshot>
<dependencies>
<nextcloud min-version="30" max-version="30"/>
</dependencies>
<background-jobs>
<job>OCA\FilesLock\Cron\Unlock</job>
</background-jobs>
<commands>
<command>OCA\FilesLock\Command\Lock</command>
</commands>
<sabre>
<plugins>
<plugin>OCA\FilesLock\DAV\LockPlugin</plugin>
</plugins>
</sabre>
</info>