Skip to content

Commit

Permalink
Fixing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
liorkesos committed Jul 12, 2014
1 parent 24f5393 commit 54ffa3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/slack/server/routes/slack.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function(Slack, app, auth, database) {
app.post('/yesman',function(req,res) {
var reply = slacki.respond(req.body,function(hook) {
return {
text: 'Good point, ' + hook.user_name + ' you are on channel ' + hook.channel_name,
text: 'Good point, ' + hook.user_name + ' you are on channel ' + hook.channel_name ,
username: 'Kate'
};

Expand All @@ -28,4 +28,5 @@ module.exports = function(Slack, app, auth, database) {
//Rendering a view from the Package server/views
res.send(html);
});
});
};

0 comments on commit 54ffa3e

Please sign in to comment.