Skip to content

Commit

Permalink
prefixed response with "you said"
Browse files Browse the repository at this point in the history
  • Loading branch information
fuselabs committed Apr 6, 2016
1 parent 3b93518 commit 62f5b13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var bot = new builder.BotConnectorBot(botConnectorOptions);
bot.add('/', function (session) {

//respond with user's message
session.send(session.message.text);
session.send("You said " + session.message.text);
});

// Setup Restify Server
Expand Down

0 comments on commit 62f5b13

Please sign in to comment.