For `FieldSet.required_fields`, that only ensures ...
# plugins
p
For
FieldSet.required_fields
, that only ensures that the fields are registered on the target, it doesn't check for targets that have all those fields populated, right? Most of my fields do not have to be filled in by the user (in the BUILD file), so I want to make sure that adding those fields to
required_fields
isn't going to exclude the targets where the user has chosen not to fill them in.
1
c
yeah, field presence on the target only
there’s an additional
opt_out
or something if you need per target filtering..
p
Got it. Thank you for confirming. 😄