Skip to content

Commit

Permalink
FindFeatureFlag options should not be required
Browse files Browse the repository at this point in the history
  • Loading branch information
shanman190 committed Nov 20, 2023
1 parent 459f244 commit d81103c
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,15 @@ public class FindFeatureFlag extends Recipe {
@Option(displayName = "Flag Type",
description = "The feature flag's type.",
example = "Bool",
valid = {"Bool", "Double", "Int", "JsonValue", "String"})
valid = {"Bool", "Double", "Int", "JsonValue", "String"},
required = false)
@Nullable
FeatureFlagType flagType;

@Option(displayName = "Feature Key",
description = "The unique key for the feature flag.",
example = "flag-key-123abc")
example = "flag-key-123abc",
required = false)
@Nullable
String featureKey;

Expand Down

0 comments on commit d81103c

Please sign in to comment.