Skip to content

Commit

Permalink
chore: add feature flag for Full-stack Signals (#19391)
Browse files Browse the repository at this point in the history
  • Loading branch information
taefi authored May 17, 2024
1 parent da3500d commit edc168d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ public class FeatureFlags implements Serializable {
"Internationalization plugin for Copilot", "copilotI18n",
"https://vaadin.com/docs/latest/tools", false, null);

public static final Feature HILLA_FULLSTACK_SIGNALS = new Feature(
"Hilla Full-stack Signals", "fullstackSignals",
"https://github.com/vaadin/hilla/discussions/1902", true, null);

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

File propertiesFolder = null;
Expand All @@ -108,6 +112,7 @@ public FeatureFlags(Lookup lookup) {
features.add(new Feature(WEB_PUSH));
features.add(new Feature(FORM_FILLER_ADDON));
features.add(new Feature(HILLA_I18N));
features.add(new Feature(HILLA_FULLSTACK_SIGNALS));
features.add(new Feature(COPILOT_FLOW));
features.add(new Feature(COPILOT_I18N));
loadProperties();
Expand Down

0 comments on commit edc168d

Please sign in to comment.