| 970 | // ***** Endpoint for ValidatorRequired ****** |
| 971 | C_ATTR(required, :Local :AutoArgs) |
| 972 | void required(Context *c) |
| 973 | { |
| 974 | Validator v({new ValidatorRequired(u"field"_s, m_validatorMessages)}); |
| 975 | checkResponse(c, v.validate(c)); |
| 976 | } |
| 977 | |
| 978 | // ***** Endpoint for ValidatorRequiredIf ****** |
| 979 | C_ATTR(requiredIf, :Local :AutoArgs) |