diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-03-30 14:39:07 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-03-30 14:39:07 +0200 |
commit | 523fdda39915dd49190727ac74458a28f2d00f10 (patch) | |
tree | bbf71b0c460074042159b94f9b4771dfd65e8bbe /apps | |
parent | a07c6b1a2ea66f00b3e85d480703ca06a4b241be (diff) | |
download | nextcloud-server-523fdda39915dd49190727ac74458a28f2d00f10.tar.gz nextcloud-server-523fdda39915dd49190727ac74458a28f2d00f10.zip |
add the option to only load apps of a specific type
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_archive/appinfo/info.xml | 3 | ||||
-rw-r--r-- | apps/files_encryption/appinfo/info.xml | 3 | ||||
-rw-r--r-- | apps/files_remote/appinfo/info.xml | 3 | ||||
-rw-r--r-- | apps/files_sharing/appinfo/info.xml | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/apps/files_archive/appinfo/info.xml b/apps/files_archive/appinfo/info.xml index df767d39f6b..236b5a64b05 100644 --- a/apps/files_archive/appinfo/info.xml +++ b/apps/files_archive/appinfo/info.xml @@ -7,4 +7,7 @@ <licence>AGPL</licence> <author>Robin Appelman</author> <require>3</require> + <types> + <filesystem/> + </types> </info> diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index 053044aaed2..691b265bf60 100644 --- a/apps/files_encryption/appinfo/info.xml +++ b/apps/files_encryption/appinfo/info.xml @@ -7,4 +7,7 @@ <licence>AGPL</licence> <author>Robin Appelman</author> <require>3</require> + <types> + <filesystem/> + </types> </info> diff --git a/apps/files_remote/appinfo/info.xml b/apps/files_remote/appinfo/info.xml index 0720b6095b9..8cf66ddbc37 100644 --- a/apps/files_remote/appinfo/info.xml +++ b/apps/files_remote/appinfo/info.xml @@ -7,4 +7,7 @@ <licence>AGPL</licence> <author>Robin Appelman</author> <require>3</require> + <types> + <filesystem/> + </types> </info> diff --git a/apps/files_sharing/appinfo/info.xml b/apps/files_sharing/appinfo/info.xml index abf847b4483..8fda775520b 100644 --- a/apps/files_sharing/appinfo/info.xml +++ b/apps/files_sharing/appinfo/info.xml @@ -8,4 +8,7 @@ <author>Michael Gapczynski</author> <require>2</require> <default_enable/> + <types> + <filesystem/> + </types> </info> |