| 560 | // ***** Endpoint for ValidatorDigits without exact length ****** |
| 561 | C_ATTR(digits, :Local :AutoArgs) |
| 562 | void digits(Context *c) |
| 563 | { |
| 564 | Validator v({new ValidatorDigits(u"field"_s, -1, m_validatorMessages)}); |
| 565 | checkResponse(c, v.validate(c)); |
| 566 | } |
| 567 | |
| 568 | // ***** Endpoint for ValidatorDigits with exact length ****** |
| 569 | C_ATTR(digitsLength, :Local :AutoArgs) |