mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
feat(files_reminders): add info xml
Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
parent
59a2ef4ea1
commit
b75fac31aa
1 changed files with 32 additions and 0 deletions
32
apps/files_reminders/appinfo/info.xml
Normal file
32
apps/files_reminders/appinfo/info.xml
Normal file
|
|
@ -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>
|
||||
Loading…
Reference in a new issue