| 576 | // ***** Endpoint for ValidatorDigitsBetween ****** |
| 577 | C_ATTR(digitsBetween, :Local :AutoArgs) |
| 578 | void digitsBetween(Context *c) |
| 579 | { |
| 580 | Validator v({new ValidatorDigitsBetween(u"field"_s, 5, 10, m_validatorMessages)}); |
| 581 | checkResponse(c, v.validate(c)); |
| 582 | } |
| 583 | |
| 584 | // ***** Endpoint for ValidatorDomain without DNS check ***** |
| 585 | C_ATTR(domain, :Local :AutoArgs) |