From 4190af3dc76c4a7fc4378e7f1ea97ab7f3d17c8a Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Thu, 16 Jul 2026 14:19:10 -0100 Subject: [PATCH] adding redirectWebDAV config Signed-off-by: Maxence Lange --- lib/ConfigLexicon.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ConfigLexicon.php b/lib/ConfigLexicon.php index d24d440..a1e25d2 100644 --- a/lib/ConfigLexicon.php +++ b/lib/ConfigLexicon.php @@ -17,6 +17,7 @@ class ConfigLexicon implements ILexicon { public const GS_TOKENS = 'globalScaleTokens'; public const LOCAL_TOKEN = 'localToken'; + public const REDIRECT_WEBDAV = 'redirectWebDAV'; #[\Override] public function getStrictness(): Strictness { @@ -31,6 +32,7 @@ public function getAppConfigs(): array { return [ new Entry(key: self::GS_TOKENS, type: ValueType::ARRAY, defaultRaw: [], definition: 'list of token+host to navigate through GlobalScale', lazy: true), new Entry(key: self::LOCAL_TOKEN, type: ValueType::STRING, defaultRaw: '', definition: 'local token to id instance within GlobalScale', lazy: true), + new Entry(key: self::REDIRECT_WEBDAV, type: ValueType::BOOL, defaultRaw: false, definition: 'redirect WebDAV request on Master to Slaves', lazy: true), ]; }