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

info.xml « appinfo - github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fe053f11284dfcaef7aff245d2b3f7711980b81 (plain)
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
<?xml version="1.0"?>
<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.

Note: Encrypting the contents of group folders is currently not supported.]]></description>
	<version>12.0.1</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="24" max-version="24" />
	</dependencies>

	<background-jobs>
		<job>OCA\GroupFolders\BackgroundJob\ExpireGroupVersions</job>
		<job>OCA\GroupFolders\BackgroundJob\ExpireGroupTrash</job>
	</background-jobs>

	<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>
		<plugins>
			<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>