coabot/src/reactions.js

15 lines
348 B
JavaScript

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