info.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  4. - SPDX-License-Identifier: AGPL-3.0-or-later
  5. -->
  6. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  7. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  8. <id>files_reminders</id>
  9. <name>File reminders</name>
  10. <summary>Set file reminders</summary>
  11. <description><![CDATA[**📣 File reminders**
  12. Set file reminders.
  13. Note: to use the `File reminders` app, ensure that the `Notifications` app is installed and enabled. The `Notifications` app provides the necessary APIs for the `File reminders` app to work correctly.
  14. ]]></description>
  15. <version>1.4.0</version>
  16. <licence>agpl</licence>
  17. <author>Christopher Ng</author>
  18. <namespace>FilesReminders</namespace>
  19. <category>files</category>
  20. <bugs>https://github.com/nextcloud/server/issues</bugs>
  21. <dependencies>
  22. <nextcloud min-version="31" max-version="31"/>
  23. </dependencies>
  24. <background-jobs>
  25. <job>OCA\FilesReminders\BackgroundJob\CleanUpReminders</job>
  26. <job>OCA\FilesReminders\BackgroundJob\ScheduledNotifications</job>
  27. </background-jobs>
  28. <commands>
  29. <command>OCA\FilesReminders\Command\ListCommand</command>
  30. </commands>
  31. </info>