aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-11-15 17:40:26 +0100
committerJoas Schilling <coding@schilljs.com>2022-11-15 17:40:26 +0100
commit7dccb8cd0cf881b1e56fe717f75139bffa14c7af (patch)
tree3a51c90f6d360f1c6b26e948b1c230ea688ce7cc /apps
parent102617f0b3d7fb211c9bdbc7ac68865513ba7e19 (diff)
downloadnextcloud-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.php14
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)) {