summaryrefslogtreecommitdiffstats
path: root/apps/files_reminders/appinfo
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2023-07-31 12:10:50 -0700
committerChristopher Ng <chrng8@gmail.com>2023-08-08 16:29:11 -0700
commit6da4542391e16343847844f59b07e05ce0dc6455 (patch)
tree4774a7d90397cd0c4ab267420ecb5350469368e7 /apps/files_reminders/appinfo
parent29a78fef17100493538ebb95cfc1dd928fd99c39 (diff)
downloadnextcloud-server-6da4542391e16343847844f59b07e05ce0dc6455.tar.gz
nextcloud-server-6da4542391e16343847844f59b07e05ce0dc6455.zip
feat(files_reminders): add info xml
Signed-off-by: Christopher Ng <chrng8@gmail.com> (cherry picked from commit b75fac31aae8dcd65640ccce1540c3c5b22445f3)
Diffstat (limited to 'apps/files_reminders/appinfo')
-rw-r--r--apps/files_reminders/appinfo/info.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/apps/files_reminders/appinfo/info.xml b/apps/files_reminders/appinfo/info.xml
new file mode 100644
index 00000000000..d0a69c1ae7c
--- /dev/null
+++ b/apps/files_reminders/appinfo/info.xml
@@ -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>