info.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. - SPDX-FileCopyrightText: 2012-2016 ownCloud, Inc.
  5. - SPDX-License-Identifier: AGPL-3.0-only
  6. -->
  7. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  9. <id>files</id>
  10. <name>Files</name>
  11. <summary>File Management</summary>
  12. <description>File Management</description>
  13. <version>2.2.0</version>
  14. <licence>agpl</licence>
  15. <author>John Molakvoæ</author>
  16. <author>Robin Appelman</author>
  17. <author>Vincent Petry</author>
  18. <types>
  19. <filesystem/>
  20. </types>
  21. <documentation>
  22. <user>user-files</user>
  23. </documentation>
  24. <category>files</category>
  25. <bugs>https://github.com/nextcloud/server/issues</bugs>
  26. <dependencies>
  27. <nextcloud min-version="30" max-version="30"/>
  28. </dependencies>
  29. <background-jobs>
  30. <job>OCA\Files\BackgroundJob\ScanFiles</job>
  31. <job>OCA\Files\BackgroundJob\DeleteOrphanedItems</job>
  32. <job>OCA\Files\BackgroundJob\CleanupFileLocks</job>
  33. <job>OCA\Files\BackgroundJob\CleanupDirectEditingTokens</job>
  34. <job>OCA\Files\BackgroundJob\DeleteExpiredOpenLocalEditor</job>
  35. </background-jobs>
  36. <commands>
  37. <command>OCA\Files\Command\Scan</command>
  38. <command>OCA\Files\Command\DeleteOrphanedFiles</command>
  39. <command>OCA\Files\Command\TransferOwnership</command>
  40. <command>OCA\Files\Command\ScanAppData</command>
  41. <command>OCA\Files\Command\RepairTree</command>
  42. <command>OCA\Files\Command\Get</command>
  43. <command>OCA\Files\Command\Put</command>
  44. <command>OCA\Files\Command\Delete</command>
  45. <command>OCA\Files\Command\Copy</command>
  46. <command>OCA\Files\Command\Move</command>
  47. <command>OCA\Files\Command\Object\Delete</command>
  48. <command>OCA\Files\Command\Object\Get</command>
  49. <command>OCA\Files\Command\Object\Put</command>
  50. </commands>
  51. <settings>
  52. <personal>OCA\Files\Settings\PersonalSettings</personal>
  53. </settings>
  54. <activity>
  55. <settings>
  56. <setting>OCA\Files\Activity\Settings\FavoriteAction</setting>
  57. <setting>OCA\Files\Activity\Settings\FileChanged</setting>
  58. <setting>OCA\Files\Activity\Settings\FileFavoriteChanged</setting>
  59. </settings>
  60. <filters>
  61. <filter>OCA\Files\Activity\Filter\FileChanges</filter>
  62. <filter>OCA\Files\Activity\Filter\Favorites</filter>
  63. </filters>
  64. <providers>
  65. <provider>OCA\Files\Activity\FavoriteProvider</provider>
  66. <provider>OCA\Files\Activity\Provider</provider>
  67. </providers>
  68. </activity>
  69. <navigations>
  70. <navigation>
  71. <name>Files</name>
  72. <route>files.view.index</route>
  73. <order>0</order>
  74. </navigation>
  75. </navigations>
  76. </info>