info.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0"?>
  2. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  4. <id>workflowengine</id>
  5. <name>Nextcloud workflow engine</name>
  6. <summary>Nextcloud workflow engine</summary>
  7. <description>Nextcloud workflow engine</description>
  8. <version>2.0.0</version>
  9. <licence>agpl</licence>
  10. <author>Arthur Schiwon</author>
  11. <author>Julius Härtl</author>
  12. <author>Morris Jobke</author>
  13. <namespace>WorkflowEngine</namespace>
  14. <types>
  15. <filesystem/>
  16. </types>
  17. <category>files</category>
  18. <website>https://github.com/nextcloud/server</website>
  19. <bugs>https://github.com/nextcloud/server/issues</bugs>
  20. <repository>https://github.com/nextcloud/server.git</repository>
  21. <dependencies>
  22. <nextcloud min-version="18" max-version="18"/>
  23. </dependencies>
  24. <repair-steps>
  25. <post-migration>
  26. <step>OCA\WorkflowEngine\Migration\PopulateNewlyIntroducedDatabaseFields</step>
  27. </post-migration>
  28. </repair-steps>
  29. <commands>
  30. <command>OCA\WorkflowEngine\Command\Index</command>
  31. </commands>
  32. <settings>
  33. <admin>OCA\WorkflowEngine\Settings\Admin</admin>
  34. <admin-section>OCA\WorkflowEngine\Settings\Section</admin-section>
  35. <personal>OCA\WorkflowEngine\Settings\Personal</personal>
  36. <personal-section>OCA\WorkflowEngine\Settings\Section</personal-section>
  37. </settings>
  38. </info>