coabot/src/reactions.js

15 lines
348 B
JavaScript
Raw Normal View History

2019-09-12 09:02:55 +00:00
const bot = require('bbot');
bot.global.text({
contains: ['facebook', 'google', 'amazon', 'apple', 'microsoft']
}, (b) => {
b.respondVia('react', ':hear_no_evil:');
}, {
id: 'gafam-react'
});
2019-09-12 13:32:13 +00:00
bot.global.text(/pe?tit? globe/i, (b) => b.respond('![pti globe](https://crapaud-fou.org/images/chat-ptiglobe.png)'), {
2019-09-12 09:02:55 +00:00
id: 'ptiglobe-direct'
})