#5175 TpvTransaction.confirm(): Return response
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2023-01-31 14:00:10 +01:00
parent b1af981c74
commit 5045a8f670
1 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,10 @@ module.exports = Self => {
required: true,
}
],
returns: {
type: 'Boolean',
root: true
},
http: {
path: `/confirm`,
verb: 'POST'
@ -66,5 +70,7 @@ module.exports = Self => {
params['Ds_Response'],
params['Ds_ErrorCode']
]);
return true;
};
};