info.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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>federation</id>
  5. <name>Federation</name>
  6. <summary>Federation allows you to connect with other trusted servers to exchange the account directory.</summary>
  7. <description>Federation allows you to connect with other trusted servers to exchange the account directory. For example this will be used to auto-complete external accounts for federated sharing.</description>
  8. <version>1.20.0</version>
  9. <licence>agpl</licence>
  10. <author>Bjoern Schiessle</author>
  11. <namespace>Federation</namespace>
  12. <types>
  13. <authentication/>
  14. </types>
  15. <category>social</category>
  16. <bugs>https://github.com/nextcloud/server/issues</bugs>
  17. <dependencies>
  18. <nextcloud min-version="30" max-version="30"/>
  19. </dependencies>
  20. <background-jobs>
  21. <job>OCA\Federation\SyncJob</job>
  22. </background-jobs>
  23. <commands>
  24. <command>OCA\Federation\Command\SyncFederationAddressBooks</command>
  25. </commands>
  26. <settings>
  27. <admin>OCA\Federation\Settings\Admin</admin>
  28. </settings>
  29. </info>