0.12.0-1 Plugins und diverses

This commit is contained in:
2026-03-19 18:57:05 +00:00
parent 0a9cf6969f
commit 24955a956d
33 changed files with 3978 additions and 479 deletions
+3 -1
View File
@@ -829,6 +829,7 @@ class SettingsService {
s.options_json,
s.validation_json,
s.order_index,
s.depends_on,
v.value as current_value
FROM settings_schema s
LEFT JOIN settings_values v ON v.key = s.key
@@ -847,7 +848,8 @@ class SettingsService {
options: parseJson(row.options_json, []),
validation: parseJson(row.validation_json, {}),
value: normalizeValueByType(row.type, row.current_value ?? row.default_value),
orderIndex: row.order_index
orderIndex: row.order_index,
depends_on: row.depends_on ?? null
}));
}