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

info.xml « appinfo - github.com/nextcloud/files_automatedtagging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d840154ed76d9f0d751756b224e93366fc9d4f7 (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
<?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
	  xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
	<id>files_automatedtagging</id>
	<name>Files automated tagging</name>
	<summary>Automatically assign collaborative tags to files based on conditions</summary>
	<description>An app for Nextcloud that automatically assigns tags to newly uploaded files based on some conditions.

The tags can later be used to control retention, file access, automatic script execution and more.

## How it works
To define tags, administrators can create and manage a set of rule groups. Each rule group consists of one or more rules combined through operators. Rules can include criteria like file type, size, time and more. A request matches a group if all rules evaluate to true. On uploading a file all defined groups are evaluated and when matching, the given tags are assigned to the file.
	</description>

	<version>1.8.2</version>
	<licence>agpl</licence>
	<author>Joas Schilling</author>
	<namespace>FilesAutomatedTagging</namespace>

	<types>
		<filesystem/>
	</types>

	<documentation>
		<admin>https://docs.nextcloud.com/server/17/go.php?to=admin-files-automated-tagging</admin>
	</documentation>

	<category>files</category>
	<category>organization</category>
	<category>workflow</category>

	<website>https://github.com/nextcloud/files_automatedtagging</website>
	<bugs>https://github.com/nextcloud/files_automatedtagging/issues</bugs>
	<repository>https://github.com/nextcloud/files_automatedtagging.git</repository>
	<screenshot>https://raw.githubusercontent.com/nextcloud/files_automatedtagging/master/docs/screenshot.png</screenshot>
	<dependencies>
		<nextcloud min-version="18" max-version="18" />
	</dependencies>
</info>