method
PluginField.ReplaceValidators
ReplaceValidators replaces all authoritative save validators.
Arguments
| Argument | Type | Description |
|---|---|---|
values | []Validator[store.Value] | The values value. |
Returns
The declared result.
PluginFieldFull signature
func (f PluginField) ReplaceValidators(
values ...Validator[store.Value],
) PluginFieldRelated types
PluginFieldPluginField configures a field provided by the named Go plugin.
ValidatorValidator checks a field before saving, after built-in checks and write hooks. Return issues for values the author needs to fix, or an error if the check could not run. An issue belongs to this field unless its Target names a child.
ValueAn immutable scalar, object, list, or populated document value.