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 /apps | |
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 'apps')
-rw-r--r-- | apps/theming/lib/Capabilities.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/lib/Capabilities.php b/apps/theming/lib/Capabilities.php index 6e098940ff1..2552d15ea81 100644 --- a/apps/theming/lib/Capabilities.php +++ b/apps/theming/lib/Capabilities.php @@ -23,7 +23,7 @@ namespace OCA\Theming; -use OCP\Capabilities\ICapability; +use OCP\Capabilities\IPublicCapability; use OCP\IConfig; use OCP\IURLGenerator; @@ -32,7 +32,7 @@ use OCP\IURLGenerator; * * @package OCA\Theming */ -class Capabilities implements ICapability { +class Capabilities implements IPublicCapability { /** @var ThemingDefaults */ protected $theming; |