refs #4764 mod model post
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Carlos Satorres 2023-05-05 14:39:46 +02:00
parent c0e13d3339
commit 3d195bddb9
2 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,7 @@ module.exports = Self => {
root: true root: true
}, },
http: { http: {
path: `/refund`, path: `Tickets/refund`,
verb: 'post' verb: 'post'
} }
}); });

View File

@ -40,4 +40,5 @@ module.exports = function(Self) {
require('../methods/ticket/collectionLabel')(Self); require('../methods/ticket/collectionLabel')(Self);
require('../methods/ticket/expeditionPalletLabel')(Self); require('../methods/ticket/expeditionPalletLabel')(Self);
require('../methods/ticket/saveSign')(Self); require('../methods/ticket/saveSign')(Self);
require('../methods/services/refund')(Self);
}; };