Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /* istanbul ignore file */
'use strict';
const { rule } = use('Validator');
const ValidatorAbstract = use('C2C/Abstracts/ValidatorAbstract');
class UpdateSalonSurveyResult extends ValidatorAbstract {
get rules() {
return {
questions: 'array',
'questions.*': 'object',
'questions.*.id': 'required|string|exists:questions,id',
'questions.*.answer': [rule('in', [0, 1])],
};
}
}
module.exports = UpdateSalonSurveyResult;
|