diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2018-04-30 16:29:56 +0200 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2018-07-02 11:29:27 +0200 |
commit | 4c8f3d6d77c5a6bb4a7eced86890039d15d9ca67 (patch) | |
tree | a495fae781a7d3027eba3f81bf9e130b966508d6 /apps/cloud_federation_api/appinfo | |
parent | 21e64ec7f41dcf5424c3357f7ce07b22a817a16e (diff) | |
download | nextcloud-server-4c8f3d6d77c5a6bb4a7eced86890039d15d9ca67.tar.gz nextcloud-server-4c8f3d6d77c5a6bb4a7eced86890039d15d9ca67.zip |
add cloud federation api app
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'apps/cloud_federation_api/appinfo')
-rw-r--r-- | apps/cloud_federation_api/appinfo/app.php | 22 | ||||
-rw-r--r-- | apps/cloud_federation_api/appinfo/info.xml | 20 |
2 files changed, 42 insertions, 0 deletions
diff --git a/apps/cloud_federation_api/appinfo/app.php b/apps/cloud_federation_api/appinfo/app.php new file mode 100644 index 00000000000..9b79832d817 --- /dev/null +++ b/apps/cloud_federation_api/appinfo/app.php @@ -0,0 +1,22 @@ +<?php +/** + * @copyright Copyright (c) 2018 Bjoern Schiessle <bjoern@schiessle.org> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +$app = new \OCA\CloudFederationAPI\AppInfo\Application(); diff --git a/apps/cloud_federation_api/appinfo/info.xml b/apps/cloud_federation_api/appinfo/info.xml new file mode 100644 index 00000000000..c733d26c0dc --- /dev/null +++ b/apps/cloud_federation_api/appinfo/info.xml @@ -0,0 +1,20 @@ +<?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>cloud_federation_api</id> + <name>Cloud Federation API</name> + <summary>Enable clouds to communicate with each other and exchange data</summary> + <description>The Coud Federation API enabled various Nextcloud instances to communitcate with each other and to exchange data</description> + <version>0.0.1</version> + <licence>agpl</licence> + <author>Bjoern Schiessle</author> + <namespace>CloudFederationAPI</namespace> + <types> + <filesystem/> + </types> + <category>files</category> + <bugs>https://github.com/nextcloud/cloud_federation/issues</bugs> + <dependencies> + <nextcloud min-version="14" max-version="14"/> + </dependencies> +</info> |