You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

info.xml 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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_external</id>
  5. <name>External storage support</name>
  6. <summary>Adds basic external storage support</summary>
  7. <description>
  8. This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.
  9. External storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation.
  10. </description>
  11. <version>1.18.0</version>
  12. <licence>agpl</licence>
  13. <author>Robin Appelman</author>
  14. <author>Michael Gapczynski</author>
  15. <author>Vincent Petry</author>
  16. <namespace>Files_External</namespace>
  17. <types>
  18. <filesystem/>
  19. </types>
  20. <documentation>
  21. <admin>admin-external-storage</admin>
  22. </documentation>
  23. <category>files</category>
  24. <category>integration</category>
  25. <bugs>https://github.com/nextcloud/server/issues</bugs>
  26. <dependencies>
  27. <nextcloud min-version="26" max-version="26"/>
  28. </dependencies>
  29. <background-jobs>
  30. <job>OCA\Files_External\BackgroundJob\CredentialsCleanup</job>
  31. </background-jobs>
  32. <commands>
  33. <command>OCA\Files_External\Command\ListCommand</command>
  34. <command>OCA\Files_External\Command\Config</command>
  35. <command>OCA\Files_External\Command\Option</command>
  36. <command>OCA\Files_External\Command\Applicable</command>
  37. <command>OCA\Files_External\Command\Import</command>
  38. <command>OCA\Files_External\Command\Export</command>
  39. <command>OCA\Files_External\Command\Delete</command>
  40. <command>OCA\Files_External\Command\Create</command>
  41. <command>OCA\Files_External\Command\Backends</command>
  42. <command>OCA\Files_External\Command\Verify</command>
  43. <command>OCA\Files_External\Command\Notify</command>
  44. </commands>
  45. <settings>
  46. <admin>OCA\Files_External\Settings\Admin</admin>
  47. <admin-section>OCA\Files_External\Settings\Section</admin-section>
  48. <personal>OCA\Files_External\Settings\Personal</personal>
  49. <personal-section>OCA\Files_External\Settings\PersonalSection</personal-section>
  50. </settings>
  51. </info>