aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2023-07-31 12:10:50 -0700
committerChristopher Ng <chrng8@gmail.com>2023-08-03 15:30:11 -0700
commitb75fac31aae8dcd65640ccce1540c3c5b22445f3 (patch)
treec635f4b6ac839fe46fcdfc566e8e7fb7f1baac39 /apps
parent59a2ef4ea1176c03a54e2eab83c6f81d6b2b87bb (diff)
downloadnextcloud-server-b75fac31aae8dcd65640ccce1540c3c5b22445f3.tar.gz
nextcloud-server-b75fac31aae8dcd65640ccce1540c3c5b22445f3.zip
feat(files_reminders): add info xml
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps')
-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>