Last active
January 11, 2017 21:31
-
-
Save kharmabum/47d1f215239cc956c25a70d2791735f2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const commandRegExp = new RegExp('^([\\w]+)(\\s|$)') | |
const {fetch, Feature} = require('other') | |
const feature = new Feature({ | |
name: 'juanxa-sounds', | |
version: '0.0.0-beta.af', | |
dependencies: { | |
otherjs: '^3.2.x', | |
}, | |
identity: 'c74d1011e4d14269b0c09510f3922976' | |
}) | |
feature.listen({ | |
to: 'message', | |
on(message, channel) { | |
const text = message.text | |
const options = { | |
method: 'POST', | |
body: `{"value1":"` + text + `"}` | |
} | |
fetch("https://maker.ifttt.com/trigger/oc_playlist/with/key/bfHiq3MurvmHTv3dNVkZS2", options) | |
}, | |
}) | |
module.exports = feature |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment