7299_testToMaster #2411

Merged
alexm merged 342 commits from 7299_testToMaster into master 2024-05-07 05:30:42 +00:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit 562dd4034f - Show all commits

View File

@ -67,6 +67,12 @@ module.exports = Self => {
type: 'string',
description: 'The description filter',
http: {source: 'query'}
},
{
arg: 'isOk',
type: 'boolean',
description: 'The isOk filter',
http: {source: 'query'}
}
],
returns: {
@ -102,6 +108,8 @@ module.exports = Self => {
case 'agencyModeFk':
param = `r.${param}`;
return {[param]: value};
case 'isOk':
return {'r.isOk': value};
}
});