botbuilder-dialog-loader
Version:
A Library that helps to autload Microsoft Bot Framework dialogs
13 lines (12 loc) • 327 B
JavaScript
const botbuilder = require('botbuilder');
module.exports = function (bot) {
bot.dialog('/askForName', [
function (session) {
botbuilder.Prompts.text(session, 'What is your name?');
},
function (session,response) {
session.send(`Hello ${response.response}, `);
session.endDialog();
}
]);
}