]> source.dussan.org Git - nextcloud-server.git/commitdiff
feat(files_reminders): add info xml
authorChristopher Ng <chrng8@gmail.com>
Mon, 31 Jul 2023 19:10:50 +0000 (12:10 -0700)
committerChristopher Ng <chrng8@gmail.com>
Thu, 3 Aug 2023 22:30:11 +0000 (15:30 -0700)
Signed-off-by: Christopher Ng <chrng8@gmail.com>
apps/files_reminders/appinfo/info.xml [new file with mode: 0644]

diff --git a/apps/files_reminders/appinfo/info.xml b/apps/files_reminders/appinfo/info.xml
new file mode 100644 (file)
index 0000000..d0a69c1
--- /dev/null
@@ -0,0 +1,32 @@
+<?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>0.1.0-dev</version>
+       <licence>agpl</licence>
+       <author>Christopher Ng</author>
+       <namespace>FilesReminders</namespace>
+
+       <category>files</category>
+
+       <bugs>https://github.com/nextcloud/server/issues</bugs>
+
+       <dependencies>
+               <nextcloud min-version="27" max-version="28" />
+       </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>
+ </info>