diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-03-22 09:55:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-22 09:55:19 +0100 |
commit | f843b7edfe7b3bc6e45d4610778d2df98b3985e3 (patch) | |
tree | 396188e1db0681fe4a3b3d55d3585b5915905bab /lib/public | |
parent | be35b54f69f7c54318adc3bb46d23506afcebd09 (diff) | |
parent | 514de5dfa18d92d2f7bb15c9840d685b25300f4c (diff) | |
download | nextcloud-server-f843b7edfe7b3bc6e45d4610778d2df98b3985e3.tar.gz nextcloud-server-f843b7edfe7b3bc6e45d4610778d2df98b3985e3.zip |
Merge pull request #8506 from nextcloud/use-appmanager
Use isInstalled of AppManger instead of reimplement it
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/App/IAppManager.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/public/App/IAppManager.php b/lib/public/App/IAppManager.php index f0f14061e35..4840d71d756 100644 --- a/lib/public/App/IAppManager.php +++ b/lib/public/App/IAppManager.php @@ -67,7 +67,9 @@ interface IAppManager { public function isEnabledForUser($appId, $user = null); /** - * Check if an app is installed in the instance + * Check if an app is enabled in the instance + * + * Notice: This actually checks if the app is enabled and not only if it is installed. * * @param string $appId * @return bool |