Skip to content

Instantly share code, notes, and snippets.

@surajsau
Last active January 7, 2019 06:45
Show Gist options
  • Save surajsau/acc2fd68808c7f62c5b6ca04efaf166f to your computer and use it in GitHub Desktop.
Save surajsau/acc2fd68808c7f62c5b6ca04efaf166f to your computer and use it in GitHub Desktop.
Follow Up 'Yes' intent
/**
* This handles the situation when agrees to save his/her speciality
* preference or wants to change his/her speciality preference.
*/
app.intent(['rounds_preference_yes', 'rounds_preference_change', 'cases_speciality_ask_yes'], (conv) => {
conv.ask('Sure, so which speciality would you prefer to see?');
conv.ask(new Suggestions('DailyRounds', 'Radiology Rounds', 'Cardiology Rounds'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment