Sets the secondary validation fucntion to use for this handler
(self, validation_function, **overrides)
| 83 | return self.where(transform=function, **overrides) |
| 84 | |
| 85 | def validate(self, validation_function, **overrides): |
| 86 | """Sets the secondary validation fucntion to use for this handler""" |
| 87 | return self.where(validate=validation_function, **overrides) |
| 88 | |
| 89 | def api(self, api, **overrides): |
| 90 | """Sets the API that should contain this route""" |