🆙 News windows in UI login update

This commit is contained in:
duckietm
2026-05-06 08:48:17 +02:00
parent 793c260fc5
commit a243640741
3 changed files with 35 additions and 9 deletions
+5
View File
@@ -4,3 +4,8 @@ export function GetConfigurationValue<T = string>(key: string, value: T = null):
{
return GetConfiguration().getValue(key, value);
}
export function GetOptionalConfigurationValue<T = string>(key: string, value: T = null): T
{
return GetConfiguration().definitions.has(key) ? GetConfiguration().getValue(key, value) : value;
}