5274c54268
This job can be initiated by a user to transfer a file/folder to a target user. The target user will have to accept the job. Once that is done the transfers is initiated in the background. Both parties get notified when the job is done. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
72 lines
2.1 KiB
XML
72 lines
2.1 KiB
XML
<?xml version="1.0"?>
|
|
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
|
<id>files</id>
|
|
<name>Files</name>
|
|
<summary>File Management</summary>
|
|
<description>File Management</description>
|
|
<version>1.13.1</version>
|
|
<licence>agpl</licence>
|
|
<author>Robin Appelman</author>
|
|
<author>Vincent Petry</author>
|
|
<default_enable/>
|
|
<types>
|
|
<filesystem/>
|
|
</types>
|
|
<documentation>
|
|
<user>user-files</user>
|
|
</documentation>
|
|
<category>files</category>
|
|
<bugs>https://github.com/nextcloud/server/issues</bugs>
|
|
<dependencies>
|
|
<nextcloud min-version="18" max-version="18"/>
|
|
</dependencies>
|
|
|
|
<background-jobs>
|
|
<job>OCA\Files\BackgroundJob\ScanFiles</job>
|
|
<job>OCA\Files\BackgroundJob\DeleteOrphanedItems</job>
|
|
<job>OCA\Files\BackgroundJob\CleanupFileLocks</job>
|
|
<job>OCA\Files\BackgroundJob\CleanupDirectEditingTokens</job>
|
|
</background-jobs>
|
|
|
|
<commands>
|
|
<command>OCA\Files\Command\Scan</command>
|
|
<command>OCA\Files\Command\DeleteOrphanedFiles</command>
|
|
<command>OCA\Files\Command\TransferOwnership</command>
|
|
<command>OCA\Files\Command\ScanAppData</command>
|
|
</commands>
|
|
|
|
<activity>
|
|
<settings>
|
|
<setting>OCA\Files\Activity\Settings\FavoriteAction</setting>
|
|
<setting>OCA\Files\Activity\Settings\FileChanged</setting>
|
|
<setting>OCA\Files\Activity\Settings\FileCreated</setting>
|
|
<setting>OCA\Files\Activity\Settings\FileDeleted</setting>
|
|
<setting>OCA\Files\Activity\Settings\FileFavorite</setting>
|
|
<setting>OCA\Files\Activity\Settings\FileRestored</setting>
|
|
</settings>
|
|
|
|
<filters>
|
|
<filter>OCA\Files\Activity\Filter\FileChanges</filter>
|
|
<filter>OCA\Files\Activity\Filter\Favorites</filter>
|
|
</filters>
|
|
|
|
<providers>
|
|
<provider>OCA\Files\Activity\FavoriteProvider</provider>
|
|
<provider>OCA\Files\Activity\Provider</provider>
|
|
</providers>
|
|
</activity>
|
|
|
|
<navigations>
|
|
<navigation>
|
|
<name>Files</name>
|
|
<route>files.view.index</route>
|
|
<order>0</order>
|
|
</navigation>
|
|
</navigations>
|
|
|
|
<settings>
|
|
<personal>OCA\Files\Settings\PersonalSettings</personal>
|
|
</settings>
|
|
|
|
</info>
|