We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abe3d05 commit 6daef9cCopy full SHA for 6daef9c
src/services/WorkPeriodPaymentProcessorService.js
@@ -62,7 +62,7 @@ processCreate.schema = {
62
challengeId: Joi.string().uuid().allow(null),
63
memberRate: Joi.number().required(),
64
customerRate: Joi.number().allow(null),
65
- days: Joi.number().integer().min(1).max(5).required(),
+ days: Joi.number().integer().min(0).max(10).required(),
66
amount: Joi.number().greater(0).allow(null),
67
status: Joi.workPeriodPaymentStatus().required(),
68
billingAccountId: Joi.number().allow(null),
0 commit comments