diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-10-23 12:55:28 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-11-18 14:09:54 +0100 |
commit | 9e327a5890735d2a4dc3b7f88ab5fd571119c21d (patch) | |
tree | cb8118d9115acf0051af5411bb77a653cdedb88e /lib/public | |
parent | 4d138a11f97becf8555705bd3d77b1a68b649997 (diff) | |
download | nextcloud-server-9e327a5890735d2a4dc3b7f88ab5fd571119c21d.tar.gz nextcloud-server-9e327a5890735d2a4dc3b7f88ab5fd571119c21d.zip |
fix(apps-store): Remove apps from force-enabled state when uninstalledfix/app-store-remove-force-enable
If an app is force-enabled and then uninstalled the force-enabled state was kept.
This is now removed, so when the app should be re-installed the compatibility should be reevaluated.
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/App/IAppManager.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/App/IAppManager.php b/lib/public/App/IAppManager.php index 0af7cdfc495..110bcacf396 100644 --- a/lib/public/App/IAppManager.php +++ b/lib/public/App/IAppManager.php @@ -144,7 +144,7 @@ interface IAppManager { * @param bool $automaticDisabled * @since 8.0.0 */ - public function disableApp($appId, $automaticDisabled = false); + public function disableApp($appId, $automaticDisabled = false): void; /** * Get the directory for the given app. @@ -185,7 +185,7 @@ interface IAppManager { * Clear the cached list of apps when enabling/disabling an app * @since 8.1.0 */ - public function clearAppsCache(); + public function clearAppsCache(): void; /** * @param string $appId @@ -201,7 +201,7 @@ interface IAppManager { * @return bool * * This function walks through the Nextcloud directory and loads all apps - * it can find. A directory contains an app if the file /appinfo/info.xml + * it can find. A directory contains an app if the file `/appinfo/info.xml` * exists. * * if $types is set to non-empty array, only apps of those types will be loaded @@ -271,7 +271,7 @@ interface IAppManager { /** * Set the global default apps with fallbacks * - * @param string[] $appId + * @param string[] $defaultApps * @throws \InvalidArgumentException If any of the apps is not installed * @since 28.0.0 * @deprecated 31.0.0 |