agneta-platform
Version:
Agneta Platform - Integrate and customize business applications
51 lines (41 loc) • 874 B
JavaScript
module.exports = function(Model) {
Model.ipList = function(accountId) {
return Promise.resolve()
.then(function() {
return Model.getModel('Account').__get(accountId);
})
.then(function(account) {
return account.ip_whitelist.find();
})
.then(function(result){
return {
list: result
};
});
};
Model.remoteMethod(
'ipList', {
description: 'List the ip whitelist of a specified account',
accepts: [{
arg: 'accountId',
type: 'string',
required: true
}, {
arg: 'req',
type: 'object',
'http': {
source: 'req'
}
}],
returns: {
arg: 'result',
type: 'object',
root: true
},
http: {
verb: 'post',
path: '/ip-list'
}
}
);
};