#6533 - MyLogger to salix #1877

Open
jsegarra wants to merge 12 commits from 6533_myLogger_model into dev
1 changed files with 23 additions and 0 deletions
Showing only changes of commit cadf0e9483 - Show all commits

View File

@ -0,0 +1,23 @@
module.exports = Self => {
Self.remoteMethod('logInfo', {
description: 'Gets all models information',
accepts: [
{
arg: 'ctx',
type: 'Object',
http: {source: 'context'}
}
],
returns: {
type: 'Object',
root: true
},
http: {
path: `/logInfo`,
verb: 'GET'
}
});
Self.logInfo = async function(ctx) {
};
};