aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib/AppInfo
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-05-30 09:59:52 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-10-19 11:43:58 +0200
commitc71e47f5c311836973c7ae22b174dfbbf8117304 (patch)
tree17ffa6b2cea8b0da7b791bc34daed4ecb5284465 /apps/settings/lib/AppInfo
parenteb1d612d961b562e744b8c6d8d361075b6daad55 (diff)
downloadnextcloud-server-c71e47f5c311836973c7ae22b174dfbbf8117304.tar.gz
nextcloud-server-c71e47f5c311836973c7ae22b174dfbbf8117304.zip
Progress
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/settings/lib/AppInfo')
-rw-r--r--apps/settings/lib/AppInfo/Application.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/settings/lib/AppInfo/Application.php b/apps/settings/lib/AppInfo/Application.php
index 22993a79485..c3ed7b31e79 100644
--- a/apps/settings/lib/AppInfo/Application.php
+++ b/apps/settings/lib/AppInfo/Application.php
@@ -49,6 +49,7 @@ use OCA\Settings\Search\AppSearch;
use OCA\Settings\Search\SectionSearch;
use OCA\Settings\Search\UserSearch;
use OCA\Settings\SetupChecks\CheckUserCertificates;
+use OCA\Settings\SetupChecks\LegacySSEKeyFormat;
use OCA\Settings\UserMigration\AccountMigrator;
use OCA\Settings\WellKnown\ChangePasswordHandler;
use OCA\Settings\WellKnown\SecurityTxtHandler;
@@ -139,6 +140,7 @@ class Application extends App implements IBootstrap {
);
});
$context->registerSetupCheck(CheckUserCertificates::class);
+ $context->registerSetupCheck(LegacySSEKeyFormat::class);
$context->registerUserMigrator(AccountMigrator::class);
}