Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

info.xml 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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_sharing</id>
  5. <name>File sharing</name>
  6. <summary>File sharing</summary>
  7. <description>
  8. This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.
  9. Turning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation.
  10. </description>
  11. <version>1.16.0</version>
  12. <licence>agpl</licence>
  13. <author>Michael Gapczynski</author>
  14. <author>Bjoern Schiessle</author>
  15. <namespace>Files_Sharing</namespace>
  16. <default_enable/>
  17. <types>
  18. <filesystem/>
  19. </types>
  20. <category>files</category>
  21. <category>social</category>
  22. <bugs>https://github.com/nextcloud/server/issues</bugs>
  23. <dependencies>
  24. <nextcloud min-version="24" max-version="24"/>
  25. </dependencies>
  26. <background-jobs>
  27. <job>OCA\Files_Sharing\DeleteOrphanedSharesJob</job>
  28. <job>OCA\Files_Sharing\ExpireSharesJob</job>
  29. <job>OCA\Files_Sharing\BackgroundJob\FederatedSharesDiscoverJob</job>
  30. </background-jobs>
  31. <repair-steps>
  32. <post-migration>
  33. <step>OCA\Files_Sharing\Migration\OwncloudGuestShareType</step>
  34. <step>OCA\Files_Sharing\Migration\SetPasswordColumn</step>
  35. <step>OCA\Files_Sharing\Migration\SetAcceptedStatus</step>
  36. </post-migration>
  37. </repair-steps>
  38. <commands>
  39. <command>OCA\Files_Sharing\Command\CleanupRemoteStorages</command>
  40. <command>OCA\Files_Sharing\Command\ExiprationNotification</command>
  41. </commands>
  42. <settings>
  43. <personal>OCA\Files_Sharing\Settings\Personal</personal>
  44. </settings>
  45. <activity>
  46. <settings>
  47. <setting>OCA\Files_Sharing\Activity\Settings\Shared</setting>
  48. <setting>OCA\Files_Sharing\Activity\Settings\RemoteShare</setting>
  49. <setting>OCA\Files_Sharing\Activity\Settings\PublicLinks</setting>
  50. </settings>
  51. <filters>
  52. <filter>OCA\Files_Sharing\Activity\Filter</filter>
  53. </filters>
  54. <providers>
  55. <provider>OCA\Files_Sharing\Activity\Providers\Downloads</provider>
  56. <provider>OCA\Files_Sharing\Activity\Providers\Groups</provider>
  57. <provider>OCA\Files_Sharing\Activity\Providers\PublicLinks</provider>
  58. <provider>OCA\Files_Sharing\Activity\Providers\RemoteShares</provider>
  59. <provider>OCA\Files_Sharing\Activity\Providers\Users</provider>
  60. </providers>
  61. </activity>
  62. <collaboration>
  63. <plugins>
  64. <plugin type="autocomplete-sort">OCA\Files_Sharing\Collaboration\ShareRecipientSorter</plugin>
  65. </plugins>
  66. </collaboration>
  67. <public>
  68. <files>public.php</files>
  69. </public>
  70. </info>