Skip to content

Commit

Permalink
feat: add dashboard component feature flag (#20508)
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur-vaadin authored Nov 19, 2024
1 parent fd363ef commit 0a23c61
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ public class FeatureFlags implements Serializable {
"Hilla Full-stack Signals", "fullstackSignals",
"https://github.com/vaadin/hilla/discussions/1902", true, null);

public static final Feature DASHBOARD_COMPONENT = new Feature(
"Dashboard component (Pro)", "dashboardComponent",
"https://github.com/vaadin/platform/issues/6626", true,
"com.vaadin.flow.component.dashboard.Dashboard");

private List<Feature> features = new ArrayList<>();

File propertiesFolder = null;
Expand All @@ -111,6 +116,7 @@ public FeatureFlags(Lookup lookup) {
features.add(new Feature(HILLA_I18N));
features.add(new Feature(HILLA_FULLSTACK_SIGNALS));
features.add(new Feature(COPILOT_EXPERIMENTAL));
features.add(new Feature(DASHBOARD_COMPONENT));
loadProperties();
}

Expand Down

0 comments on commit 0a23c61

Please sign in to comment.