diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-07-12 13:04:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-12 13:04:54 +0200 |
commit | 86a496d94ae438ae5de033fd6d9c5bee19ed4fcf (patch) | |
tree | 6e732e1beb26840b6345c48495c129eab173d8d0 /lib/public | |
parent | 08d3cb9107ef800112cc131dfd41b0dd6c43f1f7 (diff) | |
parent | 44d39d87c015e039fc0ed4fd4ad0668899676233 (diff) | |
download | nextcloud-server-86a496d94ae438ae5de033fd6d9c5bee19ed4fcf.tar.gz nextcloud-server-86a496d94ae438ae5de033fd6d9c5bee19ed4fcf.zip |
Merge pull request #5567 from nextcloud/public-capabilities
Public capabilities API
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Capabilities/IPublicCapability.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/public/Capabilities/IPublicCapability.php b/lib/public/Capabilities/IPublicCapability.php new file mode 100644 index 00000000000..ded58f1208b --- /dev/null +++ b/lib/public/Capabilities/IPublicCapability.php @@ -0,0 +1,32 @@ +<?php +/** + * @copyright Copyright (c) 2017 Julius Härtl <jus@bitgrid.net> + * + * @author Julius Härtl <jus@bitgrid.net> + * + * @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/>. + * + */ + +namespace OCP\Capabilities; + +/** + * @inheritdoc + * + * @since 13.0.0 + */ +interface IPublicCapability extends ICapability {} + |