#2019 Deprecated method chat.sendMessage()
gitea/salix/2019-deprecate_chat_sendMessage This commit looks good Details

This commit is contained in:
Joan Sanchez 2020-02-07 11:10:15 +01:00
parent ca94f03c58
commit dac6563d6d
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);
};