diff options
author | Joas Schilling <coding@schilljs.com> | 2022-11-15 17:40:26 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-11-15 17:40:26 +0100 |
commit | 7dccb8cd0cf881b1e56fe717f75139bffa14c7af (patch) | |
tree | 3a51c90f6d360f1c6b26e948b1c230ea688ce7cc /apps | |
parent | 102617f0b3d7fb211c9bdbc7ac68865513ba7e19 (diff) | |
download | nextcloud-server-7dccb8cd0cf881b1e56fe717f75139bffa14c7af.tar.gz nextcloud-server-7dccb8cd0cf881b1e56fe717f75139bffa14c7af.zip |
Hide warning about missing apps for when shipped in the next version
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/updatenotification/lib/Controller/APIController.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/apps/updatenotification/lib/Controller/APIController.php b/apps/updatenotification/lib/Controller/APIController.php index 9d5d1c2d764..75b847aceb3 100644 --- a/apps/updatenotification/lib/Controller/APIController.php +++ b/apps/updatenotification/lib/Controller/APIController.php @@ -57,6 +57,18 @@ class APIController extends OCSController { /** @var string */ protected $language; + /** + * List of apps that were in the appstore but are now shipped and don't have + * a compatible update available. + * + * @var array<string, int> + */ + protected array $appsShippedInFutureVersion = [ + 'bruteforcesettings' => 25, + 'suspicious_login' => 25, + 'twofactor_totp' => 25, + ]; + public function __construct(string $appName, IRequest $request, IConfig $config, @@ -92,7 +104,7 @@ class APIController extends OCSController { } catch (AppPathNotFoundException $e) { return false; } - return !$this->appManager->isShipped($app); + return !$this->appManager->isShipped($app) && !isset($this->appsShippedInFutureVersion[$app]); }); if (empty($installedApps)) { |