Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions charlieBot/scripts/contactInfo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// Description:
// Example scripts for you to examine and try out.
// commands:

module.exports = function(robot) {
robot.hear(/hostInfo/i, function(res) {
res.send("To contact the hosts, direct message Scott Bowman or Charlie Beck.");
});
robot.hear(/hackathonInfo/i, function(res) {
res.send("For more information on the hackathon, direct message Scott Bowman");
});
robot.hear(/organizerInfo/i, function(res) {
res.send("To contact the organizers, direct message Scott Bowman or Charlie Beck.");
});
robot.hear(/furtherInfo/i, function(res) {
res.send("To contact the hosts, direct message Scott Bowman or Charlie Beck.");
});
robot.hear(/volunteerInfo/i, function(res) {
res.send("To volunteer, direct message Scott Bowman.");
});
};