-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathinfo.xml
85 lines (72 loc) Β· 2.94 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0"?>
<!--
- SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<info>
<id>groupfolders</id>
<name>Group folders</name>
<summary>Admin configured folders shared with everyone in a group</summary>
<description><![CDATA[Admin configured folders shared with everyone in a group.
Folders can be configured from *Group folders* in the admin settings.
After a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.
]]></description>
<version>18.0.8</version>
<licence>agpl</licence>
<author>Robin Appelman</author>
<namespace>GroupFolders</namespace>
<types>
<filesystem/>
<dav/>
</types>
<category>files</category>
<website>https://github.com/nextcloud/groupfolders</website>
<bugs>https://github.com/nextcloud/groupfolders/issues</bugs>
<repository type="git">https://github.com/nextcloud/groupfolders.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/groupfolders/master/screenshots/folders.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/groupfolders/master/screenshots/edit.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/groupfolders/master/screenshots/permissions.png</screenshot>
<dependencies>
<nextcloud min-version="30" max-version="30" />
</dependencies>
<background-jobs>
<job>OCA\GroupFolders\BackgroundJob\ExpireGroupVersions</job>
<job>OCA\GroupFolders\BackgroundJob\ExpireGroupTrash</job>
</background-jobs>
<repair-steps>
<post-migration>
<step>OCA\GroupFolders\Migration\WrongDefaultQuotaRepairStep</step>
</post-migration>
</repair-steps>
<commands>
<command>OCA\GroupFolders\Command\ExpireGroup\ExpireGroupBase</command>
<command>OCA\GroupFolders\Command\ListCommand</command>
<command>OCA\GroupFolders\Command\ACL</command>
<command>OCA\GroupFolders\Command\Quota</command>
<command>OCA\GroupFolders\Command\Group</command>
<command>OCA\GroupFolders\Command\Create</command>
<command>OCA\GroupFolders\Command\Rename</command>
<command>OCA\GroupFolders\Command\Delete</command>
<command>OCA\GroupFolders\Command\Scan</command>
<command>OCA\GroupFolders\Command\Trashbin\Cleanup</command>
</commands>
<settings>
<admin>OCA\GroupFolders\Settings\Admin</admin>
<admin-section>OCA\GroupFolders\Settings\Section</admin-section>
</settings>
<sabre>
<collections>
<collection>OCA\GroupFolders\DAV\RootCollection</collection>
</collections>
<plugins>
<plugin>OCA\GroupFolders\DAV\PropFindPlugin</plugin>
<plugin>OCA\GroupFolders\DAV\ACLPlugin</plugin>
</plugins>
</sabre>
<trash>
<backend for="OCA\GroupFolders\Mount\GroupFolderStorage">OCA\GroupFolders\Trash\TrashBackend</backend>
</trash>
<versions>
<backend for="OCA\GroupFolders\Mount\GroupFolderStorage">OCA\GroupFolders\Versions\VersionsBackend</backend>
</versions>
</info>