Skip to content

Commit

Permalink
feat(schema.ts): add schema for validating request
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Makila committed Sep 13, 2020
1 parent 565730c commit 590d576
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/schema.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import joi from 'joi';

export default joi
.object()
.keys({
files: joi
.array()
.min(1)
.items(
joi
.object()
.keys({
buffer: joi.binary().required()
})
.unknown()
)
.required()
})
.unknown();

0 comments on commit 590d576

Please sign in to comment.