| 527 | // ***** Endpoint for ValidatorDate with custom format ****** |
| 528 | C_ATTR(dateFormat, :Local :AutoArgs) |
| 529 | void dateFormat(Context *c) |
| 530 | { |
| 531 | Validator v({new ValidatorDate(u"field"_s, "yyyy d MM", m_validatorMessages)}); |
| 532 | checkResponse(c, v.validate(c)); |
| 533 | } |
| 534 | |
| 535 | // ***** Endpoint for ValidatorDateTime with standard formats ****** |
| 536 | C_ATTR(dateTime, :Local :AutoArgs) |