| 797 | // ***** Endpoint for ValidatorInteger ****** |
| 798 | C_ATTR(integer, :Local :AutoArgs) |
| 799 | void integer(Context *c) |
| 800 | { |
| 801 | Validator v({new ValidatorInteger(u"field"_s, QMetaType::Int, m_validatorMessages)}); |
| 802 | checkResponse(c, v.validate(c)); |
| 803 | } |
| 804 | |
| 805 | // ***** Endpoint for ValidatorIp ****** |
| 806 | C_ATTR(ip, :Local :AutoArgs) |