From 8fc42d4412ec257926f8235912232ea80559321b Mon Sep 17 00:00:00 2001 From: dena Date: Tue, 24 Sep 2024 19:50:18 +0200 Subject: [PATCH] add new skins to possible values --- app/Http/Controllers/WikiSettingController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/WikiSettingController.php b/app/Http/Controllers/WikiSettingController.php index 5745198b..e55a0214 100644 --- a/app/Http/Controllers/WikiSettingController.php +++ b/app/Http/Controllers/WikiSettingController.php @@ -14,7 +14,7 @@ class WikiSettingController extends Controller { private function getSettingValidations(): array { // FIXME: this list is evil and should be kept in sync with the model in Wiki.php?! (mostly) return [ - 'wgDefaultSkin' => ['required', 'string', 'in:vector,modern,timeless'], + 'wgDefaultSkin' => ['required', 'string', 'in:vector,modern,timeless,minerva,vector-2022'], 'wwExtEnableConfirmAccount' => ['required', 'boolean'], 'wwExtEnableWikibaseLexeme' => ['required', 'boolean'], 'wwWikibaseStringLengthString' => ['required', 'integer', 'between:400,2500'],