-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathinfo.xml
More file actions
88 lines (75 loc) Β· 3.23 KB
/
info.xml
File metadata and controls
88 lines (75 loc) Β· 3.23 KB
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
86
87
88
<?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>Team Folders</name>
<summary>Shared folders managed by admins, accessible to designated teams with configurable permissions and quotas</summary>
<description>
<![CDATA[
Team Folders (formerly "Group Folders") allows administrators to create and manage shared folders that are accessible
to selected teams within Nextcloud.
Admins can configure folders from the Team Folders section in the admin settings, where they can grant access to one
or more teams, set custom permissions (such as read, write, and sharing rights), and assign storage quotas to each
folder.
As of Hub 10/Nextcloud 31, admins must be members of a team to assign it a Team Folder. The app supports advanced
features such as quota management, granular access control, and integration with Nextcloudβs trash and versioning
systems.
]]>
</description> <version>21.0.0-dev.2</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="33" max-version="33" />
</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>
</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>