aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib/AppInfo
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-12-13 16:19:21 +0100
committerJoas Schilling <coding@schilljs.com>2023-12-18 11:29:38 +0100
commit26f4ec66af14dcaa681a4d61b725f6b1c7b9e2b1 (patch)
treeda148cf7f67f62b845c3d698f344c4497f325507 /apps/settings/lib/AppInfo
parent0ff674607f1bbf108d4318a8844f7d3f7e7a2cd6 (diff)
downloadnextcloud-server-26f4ec66af14dcaa681a4d61b725f6b1c7b9e2b1.tar.gz
nextcloud-server-26f4ec66af14dcaa681a4d61b725f6b1c7b9e2b1.zip
feat(setupcheck): Add setup check for maintenance_window_start config
Signed-off-by: Joas Schilling <coding@schilljs.com>
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 dad002af59c..0da2485aa00 100644
--- a/apps/settings/lib/AppInfo/Application.php
+++ b/apps/settings/lib/AppInfo/Application.php
@@ -60,6 +60,7 @@ use OCA\Settings\SetupChecks\FileLocking;
use OCA\Settings\SetupChecks\ForwardedForHeaders;
use OCA\Settings\SetupChecks\InternetConnectivity;
use OCA\Settings\SetupChecks\LegacySSEKeyFormat;
+use OCA\Settings\SetupChecks\MaintenanceWindowStart;
use OCA\Settings\SetupChecks\MemcacheConfigured;
use OCA\Settings\SetupChecks\PhpDefaultCharset;
use OCA\Settings\SetupChecks\PhpFreetypeSupport;
@@ -174,6 +175,7 @@ class Application extends App implements IBootstrap {
$context->registerSetupCheck(ForwardedForHeaders::class);
$context->registerSetupCheck(InternetConnectivity::class);
$context->registerSetupCheck(LegacySSEKeyFormat::class);
+ $context->registerSetupCheck(MaintenanceWindowStart::class);
$context->registerSetupCheck(MemcacheConfigured::class);
$context->registerSetupCheck(PhpDefaultCharset::class);
$context->registerSetupCheck(PhpFreetypeSupport::class);