Skip to content

Commit 170fa40

Browse files
author
James Cori
committed
Challenge API doesn't paginate
1 parent 0a3cd35 commit 170fa40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app-bootstrap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ const Joi = require('joi')
99
Joi.optionalId = () => Joi.string().uuid()
1010
Joi.id = () => Joi.optionalId().required()
1111
Joi.page = () => Joi.number().integer().min(1).default(1)
12-
Joi.perPage = () => Joi.number().integer().min(1).max(1000).default(config.DEFAULT_PAGE_SIZE)
12+
Joi.perPage = () => Joi.number().integer().min(1).max(10001).default(config.DEFAULT_PAGE_SIZE)

0 commit comments

Comments
 (0)