info.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>files</id>
  5. <name>Files</name>
  6. <summary>File Management</summary>
  7. <description>File Management</description>
  8. <version>1.22.0</version>
  9. <licence>agpl</licence>
  10. <author>Robin Appelman</author>
  11. <author>Vincent Petry</author>
  12. <types>
  13. <filesystem/>
  14. </types>
  15. <documentation>
  16. <user>user-files</user>
  17. </documentation>
  18. <category>files</category>
  19. <bugs>https://github.com/nextcloud/server/issues</bugs>
  20. <dependencies>
  21. <nextcloud min-version="27" max-version="27"/>
  22. </dependencies>
  23. <background-jobs>
  24. <job>OCA\Files\BackgroundJob\ScanFiles</job>
  25. <job>OCA\Files\BackgroundJob\DeleteOrphanedItems</job>
  26. <job>OCA\Files\BackgroundJob\CleanupFileLocks</job>
  27. <job>OCA\Files\BackgroundJob\CleanupDirectEditingTokens</job>
  28. <job>OCA\Files\BackgroundJob\DeleteExpiredOpenLocalEditor</job>
  29. </background-jobs>
  30. <commands>
  31. <command>OCA\Files\Command\Scan</command>
  32. <command>OCA\Files\Command\DeleteOrphanedFiles</command>
  33. <command>OCA\Files\Command\TransferOwnership</command>
  34. <command>OCA\Files\Command\ScanAppData</command>
  35. <command>OCA\Files\Command\RepairTree</command>
  36. <command>OCA\Files\Command\Get</command>
  37. <command>OCA\Files\Command\Put</command>
  38. <command>OCA\Files\Command\Delete</command>
  39. <command>OCA\Files\Command\Object\Delete</command>
  40. <command>OCA\Files\Command\Object\Get</command>
  41. <command>OCA\Files\Command\Object\Put</command>
  42. </commands>
  43. <activity>
  44. <settings>
  45. <setting>OCA\Files\Activity\Settings\FavoriteAction</setting>
  46. <setting>OCA\Files\Activity\Settings\FileChanged</setting>
  47. <setting>OCA\Files\Activity\Settings\FileFavoriteChanged</setting>
  48. </settings>
  49. <filters>
  50. <filter>OCA\Files\Activity\Filter\FileChanges</filter>
  51. <filter>OCA\Files\Activity\Filter\Favorites</filter>
  52. </filters>
  53. <providers>
  54. <provider>OCA\Files\Activity\FavoriteProvider</provider>
  55. <provider>OCA\Files\Activity\Provider</provider>
  56. </providers>
  57. </activity>
  58. <navigations>
  59. <navigation>
  60. <name>Files</name>
  61. <route>files.view.index</route>
  62. <order>0</order>
  63. </navigation>
  64. </navigations>
  65. <settings>
  66. <personal>OCA\Files\Settings\PersonalSettings</personal>
  67. </settings>
  68. </info>