~mna/tulip-wiki

3ebfbd288b8e5c95fdf8ce2027a0e94cfa1c8976 — Martin Angers 3 years ago a2757ed main v0.2.2-1
Update to reflect Request:validate_body
1 files changed, 2 insertions(+), 2 deletions(-)

M pkg.validator.md
M pkg.validator.md => pkg.validator.md +2 -2
@@ 67,7 67,7 @@ If both are set, then any value that isn't one of those two is
considered invalid (basically, this is like an enum for booleans,
with the added semantics that one means true, the other false).

## `ok, err|vt = Request:validate(schema[, force_ct])`
## `ok, err|vt = Request:validate_body(schema[, force_ct])`

Validates the decoded body of the Request based on schema. The
behaviour is the same as App:validate. This is registered by the


@@ 80,7 80,7 @@ The following middleware are registered and can be referenced by name in the con

## tulip.pkg.validator

Must be added before any handler that needs to call Request:validate,
Must be added before any handler that needs to call Request:validate\_body,
as it registers that extension. Not registered if the middleware
package is not registered (does not raise an error, as some apps may
use App:validator without the need for the middleware).