Skip to content

Commit

Permalink
Added ui.launch.parameters preference #3868
Browse files Browse the repository at this point in the history
  • Loading branch information
sidoruka committed Jan 20, 2025
1 parent c649f83 commit 20c77c6
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,10 @@ public class SystemPreferences {
"ui.standalone.nodes.allow.terminate", false, UI_GROUP, pass, true);
public static final BooleanPreference UI_CLUSTER_MONITORING_ADMINS_ALLOW_RANGE = new BooleanPreference(
"ui.cluster.monitoring.admins.allow.range", false, UI_GROUP, pass, true);

public static final ObjectPreference<Object> UI_LAUNCH_PARAMETERS = new ObjectPreference<>(
"ui.launch.parameters",
Collections.emptyMap(), new TypeReference<Object>() {},
UI_GROUP, isNullOrValidJson(new TypeReference<Object>() {}), true);

// Facet Filters
public static final ObjectPreference<Map<String, Object>> FACETED_FILTER_DICT = new ObjectPreference<>(
Expand Down

0 comments on commit 20c77c6

Please sign in to comment.