aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_reminders/appinfo/info.xml
blob: 83e1e813cceff495cf7088ddb0417dd467db5a16 (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
<?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_reminders</id>
	<name>File reminders</name>
	<summary>Set file reminders</summary>
	<description><![CDATA[**📣 File reminders**

Set file reminders.
	]]></description>
	<version>1.2.0</version>
	<licence>agpl</licence>
	<author>Christopher Ng</author>
	<namespace>FilesReminders</namespace>

	<types>
		<dav />
	</types>

	<category>files</category>

	<bugs>https://github.com/nextcloud/server/issues</bugs>

	<dependencies>
		<nextcloud min-version="29" max-version="29"/>
	</dependencies>

	<background-jobs>
		<job>OCA\FilesReminders\BackgroundJob\CleanUpReminders</job>
		<job>OCA\FilesReminders\BackgroundJob\ScheduledNotifications</job>
	</background-jobs>

	<commands>
		<command>OCA\FilesReminders\Command\ListCommand</command>
	</commands>

	<sabre>
		<plugins>
			<plugin>OCA\FilesReminders\Dav\PropFindPlugin</plugin>
		</plugins>
	</sabre>
 </info>