Sets the API that should contain this route
(self, api, **overrides)
| 87 | return self.where(validate=validation_function, **overrides) |
| 88 | |
| 89 | def api(self, api, **overrides): |
| 90 | """Sets the API that should contain this route""" |
| 91 | return self.where(api=api, **overrides) |
| 92 | |
| 93 | def requires(self, requirements, **overrides): |
| 94 | """Adds additional requirements to the specified route""" |