diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-09-26 15:23:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 15:23:12 +0200 |
commit | dd53a9430efca1864e77a5ffda76a8d36e66847f (patch) | |
tree | c2e575c2145fd9e29abe3b977434fa61ec298606 /apps | |
parent | 771f67f1087b57fcb30e42aa18658d8215046f34 (diff) | |
parent | 727fe2715550b3f6f8af4d07c77c8d33e55b2820 (diff) | |
download | nextcloud-server-dd53a9430efca1864e77a5ffda76a8d36e66847f.tar.gz nextcloud-server-dd53a9430efca1864e77a5ffda76a8d36e66847f.zip |
Merge pull request #48375 from nextcloud/bugfix/noid/skip-future-shipped-apps-from-updatenotification-check
Skip future shipped apps from updatenotification check
Diffstat (limited to 'apps')
-rw-r--r-- | apps/updatenotification/lib/Controller/APIController.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/updatenotification/lib/Controller/APIController.php b/apps/updatenotification/lib/Controller/APIController.php index 6a91b90139b..59643e935d1 100644 --- a/apps/updatenotification/lib/Controller/APIController.php +++ b/apps/updatenotification/lib/Controller/APIController.php @@ -39,6 +39,9 @@ class APIController extends OCSController { 'bruteforcesettings' => 25, 'suspicious_login' => 25, 'twofactor_totp' => 25, + 'files_downloadlimit' => 29, + 'twofactor_nextcloud_notification' => 30, + 'app_api' => 30, ]; public function __construct( |