Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix into 2078-ticket-step-one
gitea/salix/2078-ticket-step-one This commit looks good Details

This commit is contained in:
Carlos Jimenez Ruiz 2020-02-07 11:52:04 +01:00
commit 28e6e86e07
2 changed files with 0 additions and 31 deletions

View File

@ -1,30 +0,0 @@
module.exports = Self => {
Self.remoteMethodCtx('sendMessage', {
description: 'Send a RocketChat message',
accessType: 'WRITE',
accepts: [{
arg: 'to',
type: 'String',
required: true,
description: 'user (@) or channel (#) to send the message'
}, {
arg: 'message',
type: 'String',
required: true,
description: 'The message'
}],
returns: {
type: 'Object',
root: true
},
http: {
path: `/sendMessage`,
verb: 'POST'
}
});
// FIXME: Deprecate this method #2019
Self.sendMessage = async(ctx, to, message) => {
return Self.send(ctx, to, message);
};
};

View File

@ -1,5 +1,4 @@
module.exports = Self => {
require('../methods/chat/send')(Self);
require('../methods/chat/sendMessage')(Self);
require('../methods/chat/sendCheckingPresence')(Self);
};