7253-devToTest_2418 #2350

Merged
alexm merged 320 commits from 7253-devToTest_2418 into test 2024-04-23 08:02:46 +00:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit f7a6d47c04 - Show all commits

View File

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