info.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2016 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>workflowengine</id>
  9. <name>Nextcloud workflow engine</name>
  10. <summary>Nextcloud workflow engine</summary>
  11. <description>Nextcloud workflow engine</description>
  12. <version>2.13.0</version>
  13. <licence>agpl</licence>
  14. <author>Arthur Schiwon</author>
  15. <author>Julius Härtl</author>
  16. <author>Morris Jobke</author>
  17. <namespace>WorkflowEngine</namespace>
  18. <types>
  19. <filesystem/>
  20. </types>
  21. <category>files</category>
  22. <website>https://github.com/nextcloud/server</website>
  23. <bugs>https://github.com/nextcloud/server/issues</bugs>
  24. <repository>https://github.com/nextcloud/server.git</repository>
  25. <dependencies>
  26. <nextcloud min-version="31" max-version="31"/>
  27. </dependencies>
  28. <background-jobs>
  29. <job>OCA\WorkflowEngine\BackgroundJobs\Rotate</job>
  30. </background-jobs>
  31. <repair-steps>
  32. <post-migration>
  33. <step>OCA\WorkflowEngine\Migration\PopulateNewlyIntroducedDatabaseFields</step>
  34. </post-migration>
  35. </repair-steps>
  36. <commands>
  37. <command>OCA\WorkflowEngine\Command\Index</command>
  38. </commands>
  39. <settings>
  40. <admin>OCA\WorkflowEngine\Settings\Admin</admin>
  41. <admin-section>OCA\WorkflowEngine\Settings\Section</admin-section>
  42. <personal>OCA\WorkflowEngine\Settings\Personal</personal>
  43. <personal-section>OCA\WorkflowEngine\Settings\Section</personal-section>
  44. </settings>
  45. </info>