diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-02-16 22:56:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-16 22:56:10 +0100 |
commit | 57e0881a9eb206cb9c3894af600c5ccf4b8b8ff7 (patch) | |
tree | 5324fd4c47d74e24217fcd2b05558d5f300a5d69 /apps/federation/appinfo/info.xml | |
parent | 45e7bb7f409d8d4585ef6f8cea76b422e246c2de (diff) | |
parent | 211212f4b3f2897672e3eec26cd073bbcfe85043 (diff) | |
download | nextcloud-server-57e0881a9eb206cb9c3894af600c5ccf4b8b8ff7.tar.gz nextcloud-server-57e0881a9eb206cb9c3894af600c5ccf4b8b8ff7.zip |
Merge pull request #8232 from nextcloud/bugfix/8007/validate-appinfo-against-appstore-schema
Validate appinfo against appstore schema
Diffstat (limited to 'apps/federation/appinfo/info.xml')
-rw-r--r-- | apps/federation/appinfo/info.xml | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/apps/federation/appinfo/info.xml b/apps/federation/appinfo/info.xml index c7fc2f2431a..e96c50479ae 100644 --- a/apps/federation/appinfo/info.xml +++ b/apps/federation/appinfo/info.xml @@ -1,30 +1,35 @@ <?xml version="1.0"?> -<info> +<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd"> <id>federation</id> <name>Federation</name> + <summary>Federation allows you to connect with other trusted servers to exchange the user directory.</summary> <description>Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing.</description> - <licence>AGPL</licence> - <author>Bjoern Schiessle</author> <version>1.4.0</version> + <licence>agpl</licence> + <author>Bjoern Schiessle</author> <namespace>Federation</namespace> - <category>other</category> - <dependencies> - <nextcloud min-version="14" max-version="14" /> - </dependencies> <default_enable/> + <types> <authentication/> </types> + <category>social</category> + <bugs>https://github.com/nextcloud/server/issues</bugs> + + <dependencies> + <nextcloud min-version="14" max-version="14" /> + </dependencies> <background-jobs> <job>OCA\Federation\SyncJob</job> </background-jobs> - <settings> - <admin>OCA\Federation\Settings\Admin</admin> - </settings> - <commands> <command>OCA\Federation\Command\SyncFederationAddressBooks</command> </commands> + + <settings> + <admin>OCA\Federation\Settings\Admin</admin> + </settings> </info> |