Skip to content

Instantly share code, notes, and snippets.

@JonJam
Created January 11, 2018 08:58
Show Gist options
  • Select an option

  • Save JonJam/bb7dc3ea3fac048b0a225e7bdfad3efc to your computer and use it in GitHub Desktop.

Select an option

Save JonJam/bb7dc3ea3fac048b0a225e7bdfad3efc to your computer and use it in GitHub Desktop.
Global dialog
import { Library, Session } from "botbuilder";
import strings from "../../strings";
const lib = new Library("global");
lib
.dialog("help", (session: Session) => {
session.endDialog(strings.global.help.message);
})
.triggerAction({
// LUIS intent
matches: "global:help"
});
export default lib;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment