Skip to content
This repository has been archived by the owner on Jun 23, 2018. It is now read-only.

J3-Tech/botpress-rocketchat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Botpress RocketChat

Rocketchat connector for Botpress

Example usage

module.exports = function(bp) {
    bp.hear({
        type: /message|text/i,
        text: /qq/
    }, (event, next) => {
        bp.rocketchat.sendMessage('GENERAL', 'test');
    })
}

Reference

Incoming

bp.hear({
    platform: 'rocketchat',
    type: 'message',
    text: 'hello'
}, (event, next) => {
    bp.rocketchat.sendMessage('GENERAL', 'Welcome!')
})

Releases

No releases published

Packages

No packages published