server/apps/federation/appinfo/info.xml
Thomas Müller c5ca71ee82
[9.2] Register commands in info.xml (#26248)
* Use DI to load console commands from the apps - class name to be defined in the info.xml

* Load commands from info.xml

* Fix unit test

* Allow Di magic for IMountManager

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2016-10-11 19:48:26 +02:00

30 lines
825 B
XML

<?xml version="1.0"?>
<info>
<id>federation</id>
<name>Federation</name>
<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.1.1</version>
<namespace>Federation</namespace>
<category>other</category>
<dependencies>
<owncloud min-version="9.2" max-version="9.2" />
</dependencies>
<default_enable/>
<types>
<authentication/>
</types>
<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>
</info>