From 6a25c79f165a7c32e759245a76dd8053cc554c72 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 d1cf925b..96a4e3da 100644 --- a/app/Http/Controllers/WikiSettingController.php +++ b/app/Http/Controllers/WikiSettingController.php @@ -19,7 +19,7 @@ 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'],