()
| 82 | } |
| 83 | |
| 84 | func (brs batchRequestsForm) validate() error { |
| 85 | return validation.ValidateStruct(&brs, |
| 86 | validation.Field(&brs.Requests, validation.Required, validation.Length(0, brs.max)), |
| 87 | ) |
| 88 | } |
| 89 | |
| 90 | // NB! When the request is submitted as multipart/form-data, |
| 91 | // the regular fields data is expected to be submitted as serialized |
no test coverage detected