This commit is contained in:
Pasquale Tripodi 2026-02-03 22:10:52 +01:00 committed by GitHub
commit bf9625ff0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,6 +23,7 @@ class ConfigLexicon implements IConfigLexicon {
public const UNIFIED_SEARCH_MAX_RESULTS_PER_REQUEST = 'unified_search_max_results_per_request';
public const USER_LANGUAGE = 'lang';
public const LASTCRON_TIMESTAMP = 'lastcron';
public const USER_LOCALE = 'locale';
public function getStrictness(): ConfigLexiconStrictness {
return ConfigLexiconStrictness::IGNORE;
@ -39,6 +40,7 @@ class ConfigLexicon implements IConfigLexicon {
public function getUserConfigs(): array {
return [
new ConfigLexiconEntry(self::USER_LANGUAGE, ValueType::STRING, null, 'language'),
new ConfigLexiconEntry(self::USER_LOCALE, ValueType::STRING, null, 'locale'),
];
}
}