diff --git a/Composer/packages/server/src/server.ts b/Composer/packages/server/src/server.ts index 65ad90cf70..4049e11786 100644 --- a/Composer/packages/server/src/server.ts +++ b/Composer/packages/server/src/server.ts @@ -46,6 +46,7 @@ app.use(`${BASEURL}/api`, authorize, apiRouter); app.use(function(err: Error, req: Request, res: Response, _next: NextFunction) { if (err) { + console.log(err); res.status(500).json({ message: err.message }); } }); diff --git a/SampleBots/Cards_Samples/Main/Main.dialog b/SampleBots/Cards_Samples/ComposerDialogs/Main/Main.dialog similarity index 100% rename from SampleBots/Cards_Samples/Main/Main.dialog rename to SampleBots/Cards_Samples/ComposerDialogs/Main/Main.dialog diff --git a/SampleBots/Cards_Samples/Main/Main.lu b/SampleBots/Cards_Samples/ComposerDialogs/Main/Main.lu similarity index 100% rename from SampleBots/Cards_Samples/Main/Main.lu rename to SampleBots/Cards_Samples/ComposerDialogs/Main/Main.lu diff --git a/SampleBots/Cards_Samples/common/adaptiveCard.json b/SampleBots/Cards_Samples/ComposerDialogs/common/adaptiveCard.json similarity index 100% rename from SampleBots/Cards_Samples/common/adaptiveCard.json rename to SampleBots/Cards_Samples/ComposerDialogs/common/adaptiveCard.json diff --git a/SampleBots/Cards_Samples/common/common.lg b/SampleBots/Cards_Samples/ComposerDialogs/common/common.lg similarity index 100% rename from SampleBots/Cards_Samples/common/common.lg rename to SampleBots/Cards_Samples/ComposerDialogs/common/common.lg diff --git a/SampleBots/Cards_Samples/ComposerDialogs/settings/appsettings.json b/SampleBots/Cards_Samples/ComposerDialogs/settings/appsettings.json new file mode 100644 index 0000000000..35602f7c12 --- /dev/null +++ b/SampleBots/Cards_Samples/ComposerDialogs/settings/appsettings.json @@ -0,0 +1,12 @@ +{ + "MicrosoftAppPassword": "", + "MicrosoftAppId": "", + "luis": { + "name": "", + "authoringKey": "", + "endpointKey": "", + "authoringRegion": "westus", + "defaultLanguage": "en-us", + "environment": "composer" + } +} \ No newline at end of file diff --git a/SampleBots/ControllingConversation/ForeachPageStep/ForeachPageStep.dialog b/SampleBots/ControllingConversation/ComposerDialogs/ForeachPageStep/ForeachPageStep.dialog similarity index 100% rename from SampleBots/ControllingConversation/ForeachPageStep/ForeachPageStep.dialog rename to SampleBots/ControllingConversation/ComposerDialogs/ForeachPageStep/ForeachPageStep.dialog diff --git a/SampleBots/ControllingConversation/ForeachPageStep/ForeachPageStep.lu b/SampleBots/ControllingConversation/ComposerDialogs/ForeachPageStep/ForeachPageStep.lu similarity index 100% rename from SampleBots/ControllingConversation/ForeachPageStep/ForeachPageStep.lu rename to SampleBots/ControllingConversation/ComposerDialogs/ForeachPageStep/ForeachPageStep.lu diff --git a/SampleBots/ControllingConversation/ForeachStep/ForeachStep.dialog b/SampleBots/ControllingConversation/ComposerDialogs/ForeachStep/ForeachStep.dialog similarity index 100% rename from SampleBots/ControllingConversation/ForeachStep/ForeachStep.dialog rename to SampleBots/ControllingConversation/ComposerDialogs/ForeachStep/ForeachStep.dialog diff --git a/SampleBots/ControllingConversation/ForeachStep/ForeachStep.lu b/SampleBots/ControllingConversation/ComposerDialogs/ForeachStep/ForeachStep.lu similarity index 100% rename from SampleBots/ControllingConversation/ForeachStep/ForeachStep.lu rename to SampleBots/ControllingConversation/ComposerDialogs/ForeachStep/ForeachStep.lu diff --git a/SampleBots/ControllingConversation/IfCondition/IfCondition.dialog b/SampleBots/ControllingConversation/ComposerDialogs/IfCondition/IfCondition.dialog similarity index 100% rename from SampleBots/ControllingConversation/IfCondition/IfCondition.dialog rename to SampleBots/ControllingConversation/ComposerDialogs/IfCondition/IfCondition.dialog diff --git a/SampleBots/ControllingConversation/IfCondition/IfCondition.lu b/SampleBots/ControllingConversation/ComposerDialogs/IfCondition/IfCondition.lu similarity index 100% rename from SampleBots/ControllingConversation/IfCondition/IfCondition.lu rename to SampleBots/ControllingConversation/ComposerDialogs/IfCondition/IfCondition.lu diff --git a/SampleBots/ControllingConversation/Main/Main.dialog b/SampleBots/ControllingConversation/ComposerDialogs/Main/Main.dialog similarity index 100% rename from SampleBots/ControllingConversation/Main/Main.dialog rename to SampleBots/ControllingConversation/ComposerDialogs/Main/Main.dialog diff --git a/SampleBots/ControllingConversation/Main/Main.lu b/SampleBots/ControllingConversation/ComposerDialogs/Main/Main.lu similarity index 100% rename from SampleBots/ControllingConversation/Main/Main.lu rename to SampleBots/ControllingConversation/ComposerDialogs/Main/Main.lu diff --git a/SampleBots/ControllingConversation/RepeatDialog/RepeatDialog.dialog b/SampleBots/ControllingConversation/ComposerDialogs/RepeatDialog/RepeatDialog.dialog similarity index 100% rename from SampleBots/ControllingConversation/RepeatDialog/RepeatDialog.dialog rename to SampleBots/ControllingConversation/ComposerDialogs/RepeatDialog/RepeatDialog.dialog diff --git a/SampleBots/ControllingConversation/RepeatDialog/RepeatDialog.lu b/SampleBots/ControllingConversation/ComposerDialogs/RepeatDialog/RepeatDialog.lu similarity index 100% rename from SampleBots/ControllingConversation/RepeatDialog/RepeatDialog.lu rename to SampleBots/ControllingConversation/ComposerDialogs/RepeatDialog/RepeatDialog.lu diff --git a/SampleBots/ControllingConversation/SwitchCondition/SwitchCondition.dialog b/SampleBots/ControllingConversation/ComposerDialogs/SwitchCondition/SwitchCondition.dialog similarity index 100% rename from SampleBots/ControllingConversation/SwitchCondition/SwitchCondition.dialog rename to SampleBots/ControllingConversation/ComposerDialogs/SwitchCondition/SwitchCondition.dialog diff --git a/SampleBots/ControllingConversation/SwitchCondition/SwitchCondition.lu b/SampleBots/ControllingConversation/ComposerDialogs/SwitchCondition/SwitchCondition.lu similarity index 100% rename from SampleBots/ControllingConversation/SwitchCondition/SwitchCondition.lu rename to SampleBots/ControllingConversation/ComposerDialogs/SwitchCondition/SwitchCondition.lu diff --git a/SampleBots/ControllingConversation/common/common.lg b/SampleBots/ControllingConversation/ComposerDialogs/common/common.lg similarity index 100% rename from SampleBots/ControllingConversation/common/common.lg rename to SampleBots/ControllingConversation/ComposerDialogs/common/common.lg diff --git a/SampleBots/Inputs_Samples/AttachmentInput/AttachmentInput.dialog b/SampleBots/Inputs_Samples/ComposerDialogs/AttachmentInput/AttachmentInput.dialog similarity index 100% rename from SampleBots/Inputs_Samples/AttachmentInput/AttachmentInput.dialog rename to SampleBots/Inputs_Samples/ComposerDialogs/AttachmentInput/AttachmentInput.dialog diff --git a/SampleBots/Inputs_Samples/AttachmentInput/AttachmentInput.lu b/SampleBots/Inputs_Samples/ComposerDialogs/AttachmentInput/AttachmentInput.lu similarity index 100% rename from SampleBots/Inputs_Samples/AttachmentInput/AttachmentInput.lu rename to SampleBots/Inputs_Samples/ComposerDialogs/AttachmentInput/AttachmentInput.lu diff --git a/SampleBots/Inputs_Samples/ChoiceInput/ChoiceInput.dialog b/SampleBots/Inputs_Samples/ComposerDialogs/ChoiceInput/ChoiceInput.dialog similarity index 100% rename from SampleBots/Inputs_Samples/ChoiceInput/ChoiceInput.dialog rename to SampleBots/Inputs_Samples/ComposerDialogs/ChoiceInput/ChoiceInput.dialog diff --git a/SampleBots/Inputs_Samples/ChoiceInput/ChoiceInput.lu b/SampleBots/Inputs_Samples/ComposerDialogs/ChoiceInput/ChoiceInput.lu similarity index 100% rename from SampleBots/Inputs_Samples/ChoiceInput/ChoiceInput.lu rename to SampleBots/Inputs_Samples/ComposerDialogs/ChoiceInput/ChoiceInput.lu diff --git a/SampleBots/Inputs_Samples/ConfirmInput/ConfirmInput.dialog b/SampleBots/Inputs_Samples/ComposerDialogs/ConfirmInput/ConfirmInput.dialog similarity index 100% rename from SampleBots/Inputs_Samples/ConfirmInput/ConfirmInput.dialog rename to SampleBots/Inputs_Samples/ComposerDialogs/ConfirmInput/ConfirmInput.dialog diff --git a/SampleBots/Inputs_Samples/ConfirmInput/ConfirmInput.lu b/SampleBots/Inputs_Samples/ComposerDialogs/ConfirmInput/ConfirmInput.lu similarity index 100% rename from SampleBots/Inputs_Samples/ConfirmInput/ConfirmInput.lu rename to SampleBots/Inputs_Samples/ComposerDialogs/ConfirmInput/ConfirmInput.lu diff --git a/SampleBots/Inputs_Samples/DateTimeInput/DateTimeInput.dialog b/SampleBots/Inputs_Samples/ComposerDialogs/DateTimeInput/DateTimeInput.dialog similarity index 100% rename from SampleBots/Inputs_Samples/DateTimeInput/DateTimeInput.dialog rename to SampleBots/Inputs_Samples/ComposerDialogs/DateTimeInput/DateTimeInput.dialog diff --git a/SampleBots/Inputs_Samples/DateTimeInput/DateTimeInput.lu b/SampleBots/Inputs_Samples/ComposerDialogs/DateTimeInput/DateTimeInput.lu similarity index 100% rename from SampleBots/Inputs_Samples/DateTimeInput/DateTimeInput.lu rename to SampleBots/Inputs_Samples/ComposerDialogs/DateTimeInput/DateTimeInput.lu diff --git a/SampleBots/Inputs_Samples/Main/Main.dialog b/SampleBots/Inputs_Samples/ComposerDialogs/Main/Main.dialog similarity index 100% rename from SampleBots/Inputs_Samples/Main/Main.dialog rename to SampleBots/Inputs_Samples/ComposerDialogs/Main/Main.dialog diff --git a/SampleBots/Inputs_Samples/Main/Main.lu b/SampleBots/Inputs_Samples/ComposerDialogs/Main/Main.lu similarity index 100% rename from SampleBots/Inputs_Samples/Main/Main.lu rename to SampleBots/Inputs_Samples/ComposerDialogs/Main/Main.lu diff --git a/SampleBots/Inputs_Samples/NumberInput/NumberInput.dialog b/SampleBots/Inputs_Samples/ComposerDialogs/NumberInput/NumberInput.dialog similarity index 100% rename from SampleBots/Inputs_Samples/NumberInput/NumberInput.dialog rename to SampleBots/Inputs_Samples/ComposerDialogs/NumberInput/NumberInput.dialog diff --git a/SampleBots/Inputs_Samples/NumberInput/NumberInput.lu b/SampleBots/Inputs_Samples/ComposerDialogs/NumberInput/NumberInput.lu similarity index 100% rename from SampleBots/Inputs_Samples/NumberInput/NumberInput.lu rename to SampleBots/Inputs_Samples/ComposerDialogs/NumberInput/NumberInput.lu diff --git a/SampleBots/Inputs_Samples/OAuthInput/OAuthInput.dialog b/SampleBots/Inputs_Samples/ComposerDialogs/OAuthInput/OAuthInput.dialog similarity index 100% rename from SampleBots/Inputs_Samples/OAuthInput/OAuthInput.dialog rename to SampleBots/Inputs_Samples/ComposerDialogs/OAuthInput/OAuthInput.dialog diff --git a/SampleBots/Inputs_Samples/OAuthInput/OAuthInput.lu b/SampleBots/Inputs_Samples/ComposerDialogs/OAuthInput/OAuthInput.lu similarity index 100% rename from SampleBots/Inputs_Samples/OAuthInput/OAuthInput.lu rename to SampleBots/Inputs_Samples/ComposerDialogs/OAuthInput/OAuthInput.lu diff --git a/SampleBots/Inputs_Samples/TextInput/TextInput.dialog b/SampleBots/Inputs_Samples/ComposerDialogs/TextInput/TextInput.dialog similarity index 100% rename from SampleBots/Inputs_Samples/TextInput/TextInput.dialog rename to SampleBots/Inputs_Samples/ComposerDialogs/TextInput/TextInput.dialog diff --git a/SampleBots/Inputs_Samples/TextInput/TextInput.lu b/SampleBots/Inputs_Samples/ComposerDialogs/TextInput/TextInput.lu similarity index 100% rename from SampleBots/Inputs_Samples/TextInput/TextInput.lu rename to SampleBots/Inputs_Samples/ComposerDialogs/TextInput/TextInput.lu diff --git a/SampleBots/Inputs_Samples/common/common.lg b/SampleBots/Inputs_Samples/ComposerDialogs/common/common.lg similarity index 100% rename from SampleBots/Inputs_Samples/common/common.lg rename to SampleBots/Inputs_Samples/ComposerDialogs/common/common.lg diff --git a/SampleBots/Interrupt/GetProfile/GetProfile.dialog b/SampleBots/Interrupt/ComposerDialogs/GetProfile/GetProfile.dialog similarity index 100% rename from SampleBots/Interrupt/GetProfile/GetProfile.dialog rename to SampleBots/Interrupt/ComposerDialogs/GetProfile/GetProfile.dialog diff --git a/SampleBots/Interrupt/GetProfile/GetProfile.lu b/SampleBots/Interrupt/ComposerDialogs/GetProfile/GetProfile.lu similarity index 100% rename from SampleBots/Interrupt/GetProfile/GetProfile.lu rename to SampleBots/Interrupt/ComposerDialogs/GetProfile/GetProfile.lu diff --git a/SampleBots/Interrupt/Main/Main.dialog b/SampleBots/Interrupt/ComposerDialogs/Main/Main.dialog similarity index 100% rename from SampleBots/Interrupt/Main/Main.dialog rename to SampleBots/Interrupt/ComposerDialogs/Main/Main.dialog diff --git a/SampleBots/Interrupt/Main/Main.lu b/SampleBots/Interrupt/ComposerDialogs/Main/Main.lu similarity index 100% rename from SampleBots/Interrupt/Main/Main.lu rename to SampleBots/Interrupt/ComposerDialogs/Main/Main.lu diff --git a/SampleBots/Interrupt/common/common.lg b/SampleBots/Interrupt/ComposerDialogs/common/common.lg similarity index 100% rename from SampleBots/Interrupt/common/common.lg rename to SampleBots/Interrupt/ComposerDialogs/common/common.lg diff --git a/SampleBots/Message_Samples/LGComposition/LGComposition.dialog b/SampleBots/Message_Samples/ComposerDialogs/LGComposition/LGComposition.dialog similarity index 100% rename from SampleBots/Message_Samples/LGComposition/LGComposition.dialog rename to SampleBots/Message_Samples/ComposerDialogs/LGComposition/LGComposition.dialog diff --git a/SampleBots/Message_Samples/LGComposition/LGComposition.lu b/SampleBots/Message_Samples/ComposerDialogs/LGComposition/LGComposition.lu similarity index 100% rename from SampleBots/Message_Samples/LGComposition/LGComposition.lu rename to SampleBots/Message_Samples/ComposerDialogs/LGComposition/LGComposition.lu diff --git a/SampleBots/Message_Samples/LGWithParam/LGWithParam.dialog b/SampleBots/Message_Samples/ComposerDialogs/LGWithParam/LGWithParam.dialog similarity index 100% rename from SampleBots/Message_Samples/LGWithParam/LGWithParam.dialog rename to SampleBots/Message_Samples/ComposerDialogs/LGWithParam/LGWithParam.dialog diff --git a/SampleBots/Message_Samples/LGWithParam/LGWithParam.lu b/SampleBots/Message_Samples/ComposerDialogs/LGWithParam/LGWithParam.lu similarity index 100% rename from SampleBots/Message_Samples/LGWithParam/LGWithParam.lu rename to SampleBots/Message_Samples/ComposerDialogs/LGWithParam/LGWithParam.lu diff --git a/SampleBots/Message_Samples/Main/Main.dialog b/SampleBots/Message_Samples/ComposerDialogs/Main/Main.dialog similarity index 100% rename from SampleBots/Message_Samples/Main/Main.dialog rename to SampleBots/Message_Samples/ComposerDialogs/Main/Main.dialog diff --git a/SampleBots/Message_Samples/Main/Main.lu b/SampleBots/Message_Samples/ComposerDialogs/Main/Main.lu similarity index 100% rename from SampleBots/Message_Samples/Main/Main.lu rename to SampleBots/Message_Samples/ComposerDialogs/Main/Main.lu diff --git a/SampleBots/Message_Samples/SimpleText/SimpleText.dialog b/SampleBots/Message_Samples/ComposerDialogs/SimpleText/SimpleText.dialog similarity index 100% rename from SampleBots/Message_Samples/SimpleText/SimpleText.dialog rename to SampleBots/Message_Samples/ComposerDialogs/SimpleText/SimpleText.dialog diff --git a/SampleBots/Message_Samples/SimpleText/SimpleText.lu b/SampleBots/Message_Samples/ComposerDialogs/SimpleText/SimpleText.lu similarity index 100% rename from SampleBots/Message_Samples/SimpleText/SimpleText.lu rename to SampleBots/Message_Samples/ComposerDialogs/SimpleText/SimpleText.lu diff --git a/SampleBots/Message_Samples/TextWithLG/TextWithLG.dialog b/SampleBots/Message_Samples/ComposerDialogs/TextWithLG/TextWithLG.dialog similarity index 100% rename from SampleBots/Message_Samples/TextWithLG/TextWithLG.dialog rename to SampleBots/Message_Samples/ComposerDialogs/TextWithLG/TextWithLG.dialog diff --git a/SampleBots/Message_Samples/TextWithLG/TextWithLG.lu b/SampleBots/Message_Samples/ComposerDialogs/TextWithLG/TextWithLG.lu similarity index 100% rename from SampleBots/Message_Samples/TextWithLG/TextWithLG.lu rename to SampleBots/Message_Samples/ComposerDialogs/TextWithLG/TextWithLG.lu diff --git a/SampleBots/Message_Samples/TextWithMemory/TextWithMemory.dialog b/SampleBots/Message_Samples/ComposerDialogs/TextWithMemory/TextWithMemory.dialog similarity index 100% rename from SampleBots/Message_Samples/TextWithMemory/TextWithMemory.dialog rename to SampleBots/Message_Samples/ComposerDialogs/TextWithMemory/TextWithMemory.dialog diff --git a/SampleBots/Message_Samples/TextWithMemory/TextWithMemory.lu b/SampleBots/Message_Samples/ComposerDialogs/TextWithMemory/TextWithMemory.lu similarity index 100% rename from SampleBots/Message_Samples/TextWithMemory/TextWithMemory.lu rename to SampleBots/Message_Samples/ComposerDialogs/TextWithMemory/TextWithMemory.lu diff --git a/SampleBots/Message_Samples/common/common.lg b/SampleBots/Message_Samples/ComposerDialogs/common/common.lg similarity index 100% rename from SampleBots/Message_Samples/common/common.lg rename to SampleBots/Message_Samples/ComposerDialogs/common/common.lg diff --git a/SampleBots/MyEmailBot_composer/DeleteContactInfo/DeleteContactInfo.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteContactInfo/DeleteContactInfo.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/DeleteContactInfo/DeleteContactInfo.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteContactInfo/DeleteContactInfo.dialog diff --git a/SampleBots/MyEmailBot_composer/DeleteContactInfo/DeleteContactInfo.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteContactInfo/DeleteContactInfo.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/DeleteContactInfo/DeleteContactInfo.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteContactInfo/DeleteContactInfo.lu diff --git a/SampleBots/MyEmailBot_composer/DeleteForwardInfo/DeleteForwardInfo.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteForwardInfo/DeleteForwardInfo.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/DeleteForwardInfo/DeleteForwardInfo.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteForwardInfo/DeleteForwardInfo.dialog diff --git a/SampleBots/MyEmailBot_composer/DeleteForwardInfo/DeleteForwardInfo.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteForwardInfo/DeleteForwardInfo.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/DeleteForwardInfo/DeleteForwardInfo.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteForwardInfo/DeleteForwardInfo.lu diff --git a/SampleBots/MyEmailBot_composer/DeleteReplyInfo/DeleteReplyInfo.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteReplyInfo/DeleteReplyInfo.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/DeleteReplyInfo/DeleteReplyInfo.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteReplyInfo/DeleteReplyInfo.dialog diff --git a/SampleBots/MyEmailBot_composer/DeleteReplyInfo/DeleteReplyInfo.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteReplyInfo/DeleteReplyInfo.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/DeleteReplyInfo/DeleteReplyInfo.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteReplyInfo/DeleteReplyInfo.lu diff --git a/SampleBots/MyEmailBot_composer/DeleteSendInfo/DeleteSendInfo.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteSendInfo/DeleteSendInfo.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/DeleteSendInfo/DeleteSendInfo.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteSendInfo/DeleteSendInfo.dialog diff --git a/SampleBots/MyEmailBot_composer/DeleteSendInfo/DeleteSendInfo.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteSendInfo/DeleteSendInfo.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/DeleteSendInfo/DeleteSendInfo.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/DeleteSendInfo/DeleteSendInfo.lu diff --git a/SampleBots/MyEmailBot_composer/EmailPage/EmailPage.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/EmailPage/EmailPage.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/EmailPage/EmailPage.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/EmailPage/EmailPage.dialog diff --git a/SampleBots/MyEmailBot_composer/EmailPage/EmailPage.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/EmailPage/EmailPage.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/EmailPage/EmailPage.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/EmailPage/EmailPage.lu diff --git a/SampleBots/MyEmailBot_composer/FindMyContact/FindMyContact.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/FindMyContact/FindMyContact.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/FindMyContact/FindMyContact.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/FindMyContact/FindMyContact.dialog diff --git a/SampleBots/MyEmailBot_composer/FindMyContact/FindMyContact.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/FindMyContact/FindMyContact.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/FindMyContact/FindMyContact.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/FindMyContact/FindMyContact.lu diff --git a/SampleBots/MyEmailBot_composer/ForwardMyEmail/ForwardMyEmail.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ForwardMyEmail/ForwardMyEmail.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ForwardMyEmail/ForwardMyEmail.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ForwardMyEmail/ForwardMyEmail.dialog diff --git a/SampleBots/MyEmailBot_composer/ForwardMyEmail/ForwardMyEmail.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ForwardMyEmail/ForwardMyEmail.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ForwardMyEmail/ForwardMyEmail.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ForwardMyEmail/ForwardMyEmail.lu diff --git a/SampleBots/MyEmailBot_composer/ForwardMyEmailThroughGraph/ForwardMyEmailThroughGraph.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ForwardMyEmailThroughGraph/ForwardMyEmailThroughGraph.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ForwardMyEmailThroughGraph/ForwardMyEmailThroughGraph.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ForwardMyEmailThroughGraph/ForwardMyEmailThroughGraph.dialog diff --git a/SampleBots/MyEmailBot_composer/ForwardMyEmailThroughGraph/ForwardMyEmailThroughGraph.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ForwardMyEmailThroughGraph/ForwardMyEmailThroughGraph.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ForwardMyEmailThroughGraph/ForwardMyEmailThroughGraph.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ForwardMyEmailThroughGraph/ForwardMyEmailThroughGraph.lu diff --git a/SampleBots/MyEmailBot_composer/GetMyEmail/GetMyEmail.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/GetMyEmail/GetMyEmail.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/GetMyEmail/GetMyEmail.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/GetMyEmail/GetMyEmail.dialog diff --git a/SampleBots/MyEmailBot_composer/GetMyEmail/GetMyEmail.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/GetMyEmail/GetMyEmail.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/GetMyEmail/GetMyEmail.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/GetMyEmail/GetMyEmail.lu diff --git a/SampleBots/MyEmailBot_composer/GetMyEmailFromGraph/GetMyEmailFromGraph.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/GetMyEmailFromGraph/GetMyEmailFromGraph.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/GetMyEmailFromGraph/GetMyEmailFromGraph.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/GetMyEmailFromGraph/GetMyEmailFromGraph.dialog diff --git a/SampleBots/MyEmailBot_composer/GetMyEmailFromGraph/GetMyEmailFromGraph.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/GetMyEmailFromGraph/GetMyEmailFromGraph.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/GetMyEmailFromGraph/GetMyEmailFromGraph.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/GetMyEmailFromGraph/GetMyEmailFromGraph.lu diff --git a/SampleBots/MyEmailBot_composer/GetMySentItems/GetMySentItems.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/GetMySentItems/GetMySentItems.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/GetMySentItems/GetMySentItems.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/GetMySentItems/GetMySentItems.dialog diff --git a/SampleBots/MyEmailBot_composer/GetMySentItems/GetMySentItems.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/GetMySentItems/GetMySentItems.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/GetMySentItems/GetMySentItems.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/GetMySentItems/GetMySentItems.lu diff --git a/SampleBots/MyEmailBot_composer/GetRecipientFromGraph/GetRecipientFromGraph.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/GetRecipientFromGraph/GetRecipientFromGraph.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/GetRecipientFromGraph/GetRecipientFromGraph.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/GetRecipientFromGraph/GetRecipientFromGraph.dialog diff --git a/SampleBots/MyEmailBot_composer/GetRecipientFromGraph/GetRecipientFromGraph.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/GetRecipientFromGraph/GetRecipientFromGraph.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/GetRecipientFromGraph/GetRecipientFromGraph.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/GetRecipientFromGraph/GetRecipientFromGraph.lu diff --git a/SampleBots/MyEmailBot_composer/GetSentItemsFromGraph/GetSentItemsFromGraph.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/GetSentItemsFromGraph/GetSentItemsFromGraph.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/GetSentItemsFromGraph/GetSentItemsFromGraph.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/GetSentItemsFromGraph/GetSentItemsFromGraph.dialog diff --git a/SampleBots/MyEmailBot_composer/GetSentItemsFromGraph/GetSentItemsFromGraph.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/GetSentItemsFromGraph/GetSentItemsFromGraph.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/GetSentItemsFromGraph/GetSentItemsFromGraph.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/GetSentItemsFromGraph/GetSentItemsFromGraph.lu diff --git a/SampleBots/MyEmailBot_composer/Initialization/Initialization.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/Initialization/Initialization.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/Initialization/Initialization.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/Initialization/Initialization.dialog diff --git a/SampleBots/MyEmailBot_composer/Initialization/Initialization.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/Initialization/Initialization.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/Initialization/Initialization.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/Initialization/Initialization.lu diff --git a/SampleBots/MyEmailBot_composer/Main/Main.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/Main/Main.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/Main/Main.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/Main/Main.dialog diff --git a/SampleBots/MyEmailBot_composer/Main/Main.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/Main/Main.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/Main/Main.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/Main/Main.lu diff --git a/SampleBots/MyEmailBot_composer/ReplyMyEmail/ReplyMyEmail.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ReplyMyEmail/ReplyMyEmail.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ReplyMyEmail/ReplyMyEmail.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ReplyMyEmail/ReplyMyEmail.dialog diff --git a/SampleBots/MyEmailBot_composer/ReplyMyEmail/ReplyMyEmail.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ReplyMyEmail/ReplyMyEmail.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ReplyMyEmail/ReplyMyEmail.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ReplyMyEmail/ReplyMyEmail.lu diff --git a/SampleBots/MyEmailBot_composer/ReplyMyEmailThroughGraph/ReplyMyEmailThroughGraph.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ReplyMyEmailThroughGraph/ReplyMyEmailThroughGraph.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ReplyMyEmailThroughGraph/ReplyMyEmailThroughGraph.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ReplyMyEmailThroughGraph/ReplyMyEmailThroughGraph.dialog diff --git a/SampleBots/MyEmailBot_composer/ReplyMyEmailThroughGraph/ReplyMyEmailThroughGraph.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ReplyMyEmailThroughGraph/ReplyMyEmailThroughGraph.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ReplyMyEmailThroughGraph/ReplyMyEmailThroughGraph.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ReplyMyEmailThroughGraph/ReplyMyEmailThroughGraph.lu diff --git a/SampleBots/MyEmailBot_composer/SendMyEmail/SendMyEmail.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/SendMyEmail/SendMyEmail.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/SendMyEmail/SendMyEmail.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/SendMyEmail/SendMyEmail.dialog diff --git a/SampleBots/MyEmailBot_composer/SendMyEmail/SendMyEmail.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/SendMyEmail/SendMyEmail.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/SendMyEmail/SendMyEmail.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/SendMyEmail/SendMyEmail.lu diff --git a/SampleBots/MyEmailBot_composer/SendMyEmailToGraph/SendMyEmailToGraph.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/SendMyEmailToGraph/SendMyEmailToGraph.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/SendMyEmailToGraph/SendMyEmailToGraph.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/SendMyEmailToGraph/SendMyEmailToGraph.dialog diff --git a/SampleBots/MyEmailBot_composer/SendMyEmailToGraph/SendMyEmailToGraph.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/SendMyEmailToGraph/SendMyEmailToGraph.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/SendMyEmailToGraph/SendMyEmailToGraph.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/SendMyEmailToGraph/SendMyEmailToGraph.lu diff --git a/SampleBots/MyEmailBot_composer/ShowMyCurrentEmail/ShowMyCurrentEmail.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyCurrentEmail/ShowMyCurrentEmail.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowMyCurrentEmail/ShowMyCurrentEmail.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyCurrentEmail/ShowMyCurrentEmail.dialog diff --git a/SampleBots/MyEmailBot_composer/ShowMyCurrentEmail/ShowMyCurrentEmail.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyCurrentEmail/ShowMyCurrentEmail.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowMyCurrentEmail/ShowMyCurrentEmail.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyCurrentEmail/ShowMyCurrentEmail.lu diff --git a/SampleBots/MyEmailBot_composer/ShowMyEmail/ShowMyEmail.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyEmail/ShowMyEmail.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowMyEmail/ShowMyEmail.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyEmail/ShowMyEmail.dialog diff --git a/SampleBots/MyEmailBot_composer/ShowMyEmail/ShowMyEmail.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyEmail/ShowMyEmail.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowMyEmail/ShowMyEmail.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyEmail/ShowMyEmail.lu diff --git a/SampleBots/MyEmailBot_composer/ShowMyLastPage/ShowMyLastPage.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyLastPage/ShowMyLastPage.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowMyLastPage/ShowMyLastPage.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyLastPage/ShowMyLastPage.dialog diff --git a/SampleBots/MyEmailBot_composer/ShowMyLastPage/ShowMyLastPage.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyLastPage/ShowMyLastPage.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowMyLastPage/ShowMyLastPage.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyLastPage/ShowMyLastPage.lu diff --git a/SampleBots/MyEmailBot_composer/ShowMyNextPage/ShowMyNextPage.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyNextPage/ShowMyNextPage.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowMyNextPage/ShowMyNextPage.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyNextPage/ShowMyNextPage.dialog diff --git a/SampleBots/MyEmailBot_composer/ShowMyNextPage/ShowMyNextPage.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyNextPage/ShowMyNextPage.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowMyNextPage/ShowMyNextPage.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowMyNextPage/ShowMyNextPage.lu diff --git a/SampleBots/MyEmailBot_composer/ShowSentItems/ShowSentItems.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentItems/ShowSentItems.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowSentItems/ShowSentItems.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentItems/ShowSentItems.dialog diff --git a/SampleBots/MyEmailBot_composer/ShowSentItems/ShowSentItems.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentItems/ShowSentItems.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowSentItems/ShowSentItems.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentItems/ShowSentItems.lu diff --git a/SampleBots/MyEmailBot_composer/ShowSentLastPage/ShowSentLastPage.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentLastPage/ShowSentLastPage.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowSentLastPage/ShowSentLastPage.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentLastPage/ShowSentLastPage.dialog diff --git a/SampleBots/MyEmailBot_composer/ShowSentLastPage/ShowSentLastPage.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentLastPage/ShowSentLastPage.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowSentLastPage/ShowSentLastPage.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentLastPage/ShowSentLastPage.lu diff --git a/SampleBots/MyEmailBot_composer/ShowSentNextPage/ShowSentNextPage.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentNextPage/ShowSentNextPage.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowSentNextPage/ShowSentNextPage.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentNextPage/ShowSentNextPage.dialog diff --git a/SampleBots/MyEmailBot_composer/ShowSentNextPage/ShowSentNextPage.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentNextPage/ShowSentNextPage.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/ShowSentNextPage/ShowSentNextPage.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/ShowSentNextPage/ShowSentNextPage.lu diff --git a/SampleBots/MyEmailBot_composer/SignInToGraph/SignInToGraph.dialog b/SampleBots/MyEmailBot_composer/ComposerDialogs/SignInToGraph/SignInToGraph.dialog similarity index 100% rename from SampleBots/MyEmailBot_composer/SignInToGraph/SignInToGraph.dialog rename to SampleBots/MyEmailBot_composer/ComposerDialogs/SignInToGraph/SignInToGraph.dialog diff --git a/SampleBots/MyEmailBot_composer/SignInToGraph/SignInToGraph.lu b/SampleBots/MyEmailBot_composer/ComposerDialogs/SignInToGraph/SignInToGraph.lu similarity index 100% rename from SampleBots/MyEmailBot_composer/SignInToGraph/SignInToGraph.lu rename to SampleBots/MyEmailBot_composer/ComposerDialogs/SignInToGraph/SignInToGraph.lu diff --git a/SampleBots/MyEmailBot_composer/common/common.lg b/SampleBots/MyEmailBot_composer/ComposerDialogs/common/common.lg similarity index 100% rename from SampleBots/MyEmailBot_composer/common/common.lg rename to SampleBots/MyEmailBot_composer/ComposerDialogs/common/common.lg diff --git a/SampleBots/ReminderBot/AddReminder/AddReminder.dialog b/SampleBots/ReminderBot/ComposerDialogs/AddReminder/AddReminder.dialog similarity index 100% rename from SampleBots/ReminderBot/AddReminder/AddReminder.dialog rename to SampleBots/ReminderBot/ComposerDialogs/AddReminder/AddReminder.dialog diff --git a/SampleBots/ReminderBot/AddReminder/AddReminder.lu b/SampleBots/ReminderBot/ComposerDialogs/AddReminder/AddReminder.lu similarity index 100% rename from SampleBots/ReminderBot/AddReminder/AddReminder.lu rename to SampleBots/ReminderBot/ComposerDialogs/AddReminder/AddReminder.lu diff --git a/SampleBots/ReminderBot/ClearUserData/ClearUserData.dialog b/SampleBots/ReminderBot/ComposerDialogs/ClearUserData/ClearUserData.dialog similarity index 100% rename from SampleBots/ReminderBot/ClearUserData/ClearUserData.dialog rename to SampleBots/ReminderBot/ComposerDialogs/ClearUserData/ClearUserData.dialog diff --git a/SampleBots/ReminderBot/ClearUserData/ClearUserData.lu b/SampleBots/ReminderBot/ComposerDialogs/ClearUserData/ClearUserData.lu similarity index 100% rename from SampleBots/ReminderBot/ClearUserData/ClearUserData.lu rename to SampleBots/ReminderBot/ComposerDialogs/ClearUserData/ClearUserData.lu diff --git a/SampleBots/ReminderBot/DeleteReminder/DeleteReminder.dialog b/SampleBots/ReminderBot/ComposerDialogs/DeleteReminder/DeleteReminder.dialog similarity index 100% rename from SampleBots/ReminderBot/DeleteReminder/DeleteReminder.dialog rename to SampleBots/ReminderBot/ComposerDialogs/DeleteReminder/DeleteReminder.dialog diff --git a/SampleBots/ReminderBot/DeleteReminder/DeleteReminder.lu b/SampleBots/ReminderBot/ComposerDialogs/DeleteReminder/DeleteReminder.lu similarity index 100% rename from SampleBots/ReminderBot/DeleteReminder/DeleteReminder.lu rename to SampleBots/ReminderBot/ComposerDialogs/DeleteReminder/DeleteReminder.lu diff --git a/SampleBots/ReminderBot/Main/Main.dialog b/SampleBots/ReminderBot/ComposerDialogs/Main/Main.dialog similarity index 100% rename from SampleBots/ReminderBot/Main/Main.dialog rename to SampleBots/ReminderBot/ComposerDialogs/Main/Main.dialog diff --git a/SampleBots/ReminderBot/Main/Main.lu b/SampleBots/ReminderBot/ComposerDialogs/Main/Main.lu similarity index 100% rename from SampleBots/ReminderBot/Main/Main.lu rename to SampleBots/ReminderBot/ComposerDialogs/Main/Main.lu diff --git a/SampleBots/ReminderBot/ShowReminder/ShowReminder.dialog b/SampleBots/ReminderBot/ComposerDialogs/ShowReminder/ShowReminder.dialog similarity index 100% rename from SampleBots/ReminderBot/ShowReminder/ShowReminder.dialog rename to SampleBots/ReminderBot/ComposerDialogs/ShowReminder/ShowReminder.dialog diff --git a/SampleBots/ReminderBot/ShowReminder/ShowReminder.lu b/SampleBots/ReminderBot/ComposerDialogs/ShowReminder/ShowReminder.lu similarity index 100% rename from SampleBots/ReminderBot/ShowReminder/ShowReminder.lu rename to SampleBots/ReminderBot/ComposerDialogs/ShowReminder/ShowReminder.lu diff --git a/SampleBots/ReminderBot/common/common.lg b/SampleBots/ReminderBot/ComposerDialogs/common/common.lg similarity index 100% rename from SampleBots/ReminderBot/common/common.lg rename to SampleBots/ReminderBot/ComposerDialogs/common/common.lg diff --git a/SampleBots/Steps_Samples/Actions/Actions.dialog b/SampleBots/Steps_Samples/ComposerDialogs/Actions/Actions.dialog similarity index 100% rename from SampleBots/Steps_Samples/Actions/Actions.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/Actions/Actions.dialog diff --git a/SampleBots/Steps_Samples/Actions/Actions.lu b/SampleBots/Steps_Samples/ComposerDialogs/Actions/Actions.lu similarity index 100% rename from SampleBots/Steps_Samples/Actions/Actions.lu rename to SampleBots/Steps_Samples/ComposerDialogs/Actions/Actions.lu diff --git a/SampleBots/Steps_Samples/EditActions/EditActions.dialog b/SampleBots/Steps_Samples/ComposerDialogs/EditActions/EditActions.dialog similarity index 100% rename from SampleBots/Steps_Samples/EditActions/EditActions.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/EditActions/EditActions.dialog diff --git a/SampleBots/Steps_Samples/EditActions/EditActions.lu b/SampleBots/Steps_Samples/ComposerDialogs/EditActions/EditActions.lu similarity index 100% rename from SampleBots/Steps_Samples/EditActions/EditActions.lu rename to SampleBots/Steps_Samples/ComposerDialogs/EditActions/EditActions.lu diff --git a/SampleBots/Steps_Samples/EditArray/EditArray.dialog b/SampleBots/Steps_Samples/ComposerDialogs/EditArray/EditArray.dialog similarity index 100% rename from SampleBots/Steps_Samples/EditArray/EditArray.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/EditArray/EditArray.dialog diff --git a/SampleBots/Steps_Samples/EditArray/EditArray.lu b/SampleBots/Steps_Samples/ComposerDialogs/EditArray/EditArray.lu similarity index 100% rename from SampleBots/Steps_Samples/EditArray/EditArray.lu rename to SampleBots/Steps_Samples/ComposerDialogs/EditArray/EditArray.lu diff --git a/SampleBots/Steps_Samples/EmitEvent/EmitEvent.dialog b/SampleBots/Steps_Samples/ComposerDialogs/EmitEvent/EmitEvent.dialog similarity index 100% rename from SampleBots/Steps_Samples/EmitEvent/EmitEvent.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/EmitEvent/EmitEvent.dialog diff --git a/SampleBots/Steps_Samples/EmitEvent/EmitEvent.lu b/SampleBots/Steps_Samples/ComposerDialogs/EmitEvent/EmitEvent.lu similarity index 100% rename from SampleBots/Steps_Samples/EmitEvent/EmitEvent.lu rename to SampleBots/Steps_Samples/ComposerDialogs/EmitEvent/EmitEvent.lu diff --git a/SampleBots/Steps_Samples/EndDialog/EndDialog.dialog b/SampleBots/Steps_Samples/ComposerDialogs/EndDialog/EndDialog.dialog similarity index 100% rename from SampleBots/Steps_Samples/EndDialog/EndDialog.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/EndDialog/EndDialog.dialog diff --git a/SampleBots/Steps_Samples/EndDialog/EndDialog.lu b/SampleBots/Steps_Samples/ComposerDialogs/EndDialog/EndDialog.lu similarity index 100% rename from SampleBots/Steps_Samples/EndDialog/EndDialog.lu rename to SampleBots/Steps_Samples/ComposerDialogs/EndDialog/EndDialog.lu diff --git a/SampleBots/Steps_Samples/EndDialog/TellJoke/EndDialog.TellJoke.dialog b/SampleBots/Steps_Samples/ComposerDialogs/EndDialog/TellJoke/EndDialog.TellJoke.dialog similarity index 100% rename from SampleBots/Steps_Samples/EndDialog/TellJoke/EndDialog.TellJoke.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/EndDialog/TellJoke/EndDialog.TellJoke.dialog diff --git a/SampleBots/Steps_Samples/EndDialog/TellJoke/EndDialog.TellJoke.lu b/SampleBots/Steps_Samples/ComposerDialogs/EndDialog/TellJoke/EndDialog.TellJoke.lu similarity index 100% rename from SampleBots/Steps_Samples/EndDialog/TellJoke/EndDialog.TellJoke.lu rename to SampleBots/Steps_Samples/ComposerDialogs/EndDialog/TellJoke/EndDialog.TellJoke.lu diff --git a/SampleBots/Steps_Samples/EndTurn/EndTurn.dialog b/SampleBots/Steps_Samples/ComposerDialogs/EndTurn/EndTurn.dialog similarity index 100% rename from SampleBots/Steps_Samples/EndTurn/EndTurn.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/EndTurn/EndTurn.dialog diff --git a/SampleBots/Steps_Samples/EndTurn/EndTurn.lu b/SampleBots/Steps_Samples/ComposerDialogs/EndTurn/EndTurn.lu similarity index 100% rename from SampleBots/Steps_Samples/EndTurn/EndTurn.lu rename to SampleBots/Steps_Samples/ComposerDialogs/EndTurn/EndTurn.lu diff --git a/SampleBots/Steps_Samples/HttpRequest/HttpRequest.dialog b/SampleBots/Steps_Samples/ComposerDialogs/HttpRequest/HttpRequest.dialog similarity index 100% rename from SampleBots/Steps_Samples/HttpRequest/HttpRequest.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/HttpRequest/HttpRequest.dialog diff --git a/SampleBots/Steps_Samples/HttpRequest/HttpRequest.lu b/SampleBots/Steps_Samples/ComposerDialogs/HttpRequest/HttpRequest.lu similarity index 100% rename from SampleBots/Steps_Samples/HttpRequest/HttpRequest.lu rename to SampleBots/Steps_Samples/ComposerDialogs/HttpRequest/HttpRequest.lu diff --git a/SampleBots/Steps_Samples/IfCondition/IfCondition.dialog b/SampleBots/Steps_Samples/ComposerDialogs/IfCondition/IfCondition.dialog similarity index 100% rename from SampleBots/Steps_Samples/IfCondition/IfCondition.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/IfCondition/IfCondition.dialog diff --git a/SampleBots/Steps_Samples/IfCondition/IfCondition.lu b/SampleBots/Steps_Samples/ComposerDialogs/IfCondition/IfCondition.lu similarity index 100% rename from SampleBots/Steps_Samples/IfCondition/IfCondition.lu rename to SampleBots/Steps_Samples/ComposerDialogs/IfCondition/IfCondition.lu diff --git a/SampleBots/Steps_Samples/Main/Main.dialog b/SampleBots/Steps_Samples/ComposerDialogs/Main/Main.dialog similarity index 100% rename from SampleBots/Steps_Samples/Main/Main.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/Main/Main.dialog diff --git a/SampleBots/Steps_Samples/Main/Main.lu b/SampleBots/Steps_Samples/ComposerDialogs/Main/Main.lu similarity index 100% rename from SampleBots/Steps_Samples/Main/Main.lu rename to SampleBots/Steps_Samples/ComposerDialogs/Main/Main.lu diff --git a/SampleBots/Steps_Samples/RepeatDialog/RepeatDialog.dialog b/SampleBots/Steps_Samples/ComposerDialogs/RepeatDialog/RepeatDialog.dialog similarity index 100% rename from SampleBots/Steps_Samples/RepeatDialog/RepeatDialog.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/RepeatDialog/RepeatDialog.dialog diff --git a/SampleBots/Steps_Samples/RepeatDialog/RepeatDialog.lu b/SampleBots/Steps_Samples/ComposerDialogs/RepeatDialog/RepeatDialog.lu similarity index 100% rename from SampleBots/Steps_Samples/RepeatDialog/RepeatDialog.lu rename to SampleBots/Steps_Samples/ComposerDialogs/RepeatDialog/RepeatDialog.lu diff --git a/SampleBots/Steps_Samples/ReplaceDialog/FortuneTellerDialog/FortuneTellerDialog.dialog b/SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/FortuneTellerDialog/FortuneTellerDialog.dialog similarity index 100% rename from SampleBots/Steps_Samples/ReplaceDialog/FortuneTellerDialog/FortuneTellerDialog.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/FortuneTellerDialog/FortuneTellerDialog.dialog diff --git a/SampleBots/Steps_Samples/ReplaceDialog/FortuneTellerDialog/FortuneTellerDialog.lu b/SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/FortuneTellerDialog/FortuneTellerDialog.lu similarity index 100% rename from SampleBots/Steps_Samples/ReplaceDialog/FortuneTellerDialog/FortuneTellerDialog.lu rename to SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/FortuneTellerDialog/FortuneTellerDialog.lu diff --git a/SampleBots/Steps_Samples/ReplaceDialog/Replace.dialog b/SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/Replace.dialog similarity index 100% rename from SampleBots/Steps_Samples/ReplaceDialog/Replace.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/Replace.dialog diff --git a/SampleBots/Steps_Samples/ReplaceDialog/Replace.lu b/SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/Replace.lu similarity index 100% rename from SampleBots/Steps_Samples/ReplaceDialog/Replace.lu rename to SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/Replace.lu diff --git a/SampleBots/Steps_Samples/ReplaceDialog/ReplaceDialog.lu b/SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/ReplaceDialog.lu similarity index 100% rename from SampleBots/Steps_Samples/ReplaceDialog/ReplaceDialog.lu rename to SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/ReplaceDialog.lu diff --git a/SampleBots/Steps_Samples/ReplaceDialog/TellJokeDialog/TellJokeDialog.dialog b/SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/TellJokeDialog/TellJokeDialog.dialog similarity index 100% rename from SampleBots/Steps_Samples/ReplaceDialog/TellJokeDialog/TellJokeDialog.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/TellJokeDialog/TellJokeDialog.dialog diff --git a/SampleBots/Steps_Samples/ReplaceDialog/TellJokeDialog/TellJokeDialog.lu b/SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/TellJokeDialog/TellJokeDialog.lu similarity index 100% rename from SampleBots/Steps_Samples/ReplaceDialog/TellJokeDialog/TellJokeDialog.lu rename to SampleBots/Steps_Samples/ComposerDialogs/ReplaceDialog/TellJokeDialog/TellJokeDialog.lu diff --git a/SampleBots/Steps_Samples/SwitchCondition/SwitchCondition.dialog b/SampleBots/Steps_Samples/ComposerDialogs/SwitchCondition/SwitchCondition.dialog similarity index 100% rename from SampleBots/Steps_Samples/SwitchCondition/SwitchCondition.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/SwitchCondition/SwitchCondition.dialog diff --git a/SampleBots/Steps_Samples/SwitchCondition/SwitchCondition.lu b/SampleBots/Steps_Samples/ComposerDialogs/SwitchCondition/SwitchCondition.lu similarity index 100% rename from SampleBots/Steps_Samples/SwitchCondition/SwitchCondition.lu rename to SampleBots/Steps_Samples/ComposerDialogs/SwitchCondition/SwitchCondition.lu diff --git a/SampleBots/Steps_Samples/TraceAndLog/TraceAndLog.dialog b/SampleBots/Steps_Samples/ComposerDialogs/TraceAndLog/TraceAndLog.dialog similarity index 100% rename from SampleBots/Steps_Samples/TraceAndLog/TraceAndLog.dialog rename to SampleBots/Steps_Samples/ComposerDialogs/TraceAndLog/TraceAndLog.dialog diff --git a/SampleBots/Steps_Samples/TraceAndLog/TraceAndLog.lu b/SampleBots/Steps_Samples/ComposerDialogs/TraceAndLog/TraceAndLog.lu similarity index 100% rename from SampleBots/Steps_Samples/TraceAndLog/TraceAndLog.lu rename to SampleBots/Steps_Samples/ComposerDialogs/TraceAndLog/TraceAndLog.lu diff --git a/SampleBots/Steps_Samples/common/common.lg b/SampleBots/Steps_Samples/ComposerDialogs/common/common.lg similarity index 100% rename from SampleBots/Steps_Samples/common/common.lg rename to SampleBots/Steps_Samples/ComposerDialogs/common/common.lg diff --git a/SampleBots/ToDoBot/AddToDo/AddToDo.dialog b/SampleBots/ToDoBot/ComposerDialogs/AddToDo/AddToDo.dialog similarity index 96% rename from SampleBots/ToDoBot/AddToDo/AddToDo.dialog rename to SampleBots/ToDoBot/ComposerDialogs/AddToDo/AddToDo.dialog index ddc6de1024..3010b03b91 100644 --- a/SampleBots/ToDoBot/AddToDo/AddToDo.dialog +++ b/SampleBots/ToDoBot/ComposerDialogs/AddToDo/AddToDo.dialog @@ -6,14 +6,14 @@ "id": "808722" }, "autoEndDialog": true, - "$schema": "../../app.schema", + "defaultResultProperty": "dialog.result", "events": [ { "$type": "Microsoft.OnBeginDialog", "$designer": { "id": "335456", "updatedAt": "2019-07-22T08:10:44.402Z" - }, + }, "actions": [ { "$type": "Microsoft.SetProperty", @@ -24,7 +24,7 @@ }, "property": "dialog.todo", "value": "@title" - }, + }, { "$type": "Microsoft.TextInput", "$designer": { @@ -82,5 +82,6 @@ } ] } - ] + ], + "$schema": "../../app.schema" } diff --git a/SampleBots/ToDoBot/AddToDo/AddToDo.lu b/SampleBots/ToDoBot/ComposerDialogs/AddToDo/AddToDo.lu similarity index 100% rename from SampleBots/ToDoBot/AddToDo/AddToDo.lu rename to SampleBots/ToDoBot/ComposerDialogs/AddToDo/AddToDo.lu diff --git a/SampleBots/ToDoBot/ClearToDos/ClearToDos.dialog b/SampleBots/ToDoBot/ComposerDialogs/ClearToDos/ClearToDos.dialog similarity index 95% rename from SampleBots/ToDoBot/ClearToDos/ClearToDos.dialog rename to SampleBots/ToDoBot/ComposerDialogs/ClearToDos/ClearToDos.dialog index 69a893e2b6..2a448b6f1a 100644 --- a/SampleBots/ToDoBot/ClearToDos/ClearToDos.dialog +++ b/SampleBots/ToDoBot/ComposerDialogs/ClearToDos/ClearToDos.dialog @@ -6,7 +6,7 @@ "id": "316336" }, "autoEndDialog": true, - "$schema": "../../app.schema", + "defaultResultProperty": "dialog.result", "events": [ { "$type": "Microsoft.OnBeginDialog", @@ -14,7 +14,6 @@ "id": "480162", "updatedAt": "2019-07-22T08:10:50.068Z" }, - "actions": [ { "$type": "Microsoft.EditArray", @@ -60,5 +59,6 @@ } ] } - ] -} \ No newline at end of file + ], + "$schema": "../../app.schema" +} diff --git a/SampleBots/ToDoBot/ClearToDos/ClearToDos.lu b/SampleBots/ToDoBot/ComposerDialogs/ClearToDos/ClearToDos.lu similarity index 100% rename from SampleBots/ToDoBot/ClearToDos/ClearToDos.lu rename to SampleBots/ToDoBot/ComposerDialogs/ClearToDos/ClearToDos.lu diff --git a/SampleBots/ToDoBot/DeleteToDo/DeleteToDo.dialog b/SampleBots/ToDoBot/ComposerDialogs/DeleteToDo/DeleteToDo.dialog similarity index 100% rename from SampleBots/ToDoBot/DeleteToDo/DeleteToDo.dialog rename to SampleBots/ToDoBot/ComposerDialogs/DeleteToDo/DeleteToDo.dialog diff --git a/SampleBots/ToDoBot/DeleteToDo/DeleteToDo.lu b/SampleBots/ToDoBot/ComposerDialogs/DeleteToDo/DeleteToDo.lu similarity index 100% rename from SampleBots/ToDoBot/DeleteToDo/DeleteToDo.lu rename to SampleBots/ToDoBot/ComposerDialogs/DeleteToDo/DeleteToDo.lu diff --git a/SampleBots/ToDoBot/Main/Main.dialog b/SampleBots/ToDoBot/ComposerDialogs/Main/Main.dialog similarity index 81% rename from SampleBots/ToDoBot/Main/Main.dialog rename to SampleBots/ToDoBot/ComposerDialogs/Main/Main.dialog index eebaa13bf1..6fb5ed85b5 100644 --- a/SampleBots/ToDoBot/Main/Main.dialog +++ b/SampleBots/ToDoBot/ComposerDialogs/Main/Main.dialog @@ -7,46 +7,41 @@ "description": "This is a bot that demonstrates how to manage a ToDo list using Regular Expressions." }, "autoEndDialog": false, + "defaultResultProperty": "dialog.result", "recognizer": { "$type": "Microsoft.RegexRecognizer", "intents": [ { - - "$type": "Microsoft.IntentPattern", - "intent": "AddIntent", - "pattern": "(?i)(?:add|create) .*(?:to-do|todo|task)(?: )?(?:named (?.*))?" + "$type": "Microsoft.IntentPattern", + "intent": "AddIntent", + "pattern": "(?i)(?:add|create) .*(?:to-do|todo|task)(?: )?(?:named (?<title>.*))?" }, { - - "$type": "Microsoft.IntentPattern", - "intent": "ClearIntent", - "pattern": "(?i)(?:delete|remove|clear) (?:all|every) (?:to-dos|todos|tasks)" + "$type": "Microsoft.IntentPattern", + "intent": "ClearIntent", + "pattern": "(?i)(?:delete|remove|clear) (?:all|every) (?:to-dos|todos|tasks)" }, { - - "$type": "Microsoft.IntentPattern", - "intent": "DeleteIntent", - "pattern": "(?i)(?:delete|remove|clear) .*(?:to-do|todo|task)(?: )?(?:named (?<title>.*))?" + "$type": "Microsoft.IntentPattern", + "intent": "DeleteIntent", + "pattern": "(?i)(?:delete|remove|clear) .*(?:to-do|todo|task)(?: )?(?:named (?<title>.*))?" }, { - - "$type": "Microsoft.IntentPattern", - "intent": "ShowIntent", - "pattern": "(?i)(?:show|see|view) .*(?:to-do|todo|task)" + "$type": "Microsoft.IntentPattern", + "intent": "ShowIntent", + "pattern": "(?i)(?:show|see|view) .*(?:to-do|todo|task)" }, { - - "$type": "Microsoft.IntentPattern", - "intent": "HelpIntent", - "pattern": "(?i)help" + "$type": "Microsoft.IntentPattern", + "intent": "HelpIntent", + "pattern": "(?i)help" }, { - - "$type": "Microsoft.IntentPattern", - "intent": "CancelIntent", - "pattern": "(?i)cancel|never mind" + "$type": "Microsoft.IntentPattern", + "intent": "CancelIntent", + "pattern": "(?i)cancel|never mind" } - ] + ] }, "generator": "common.lg", "events": [ diff --git a/SampleBots/ToDoBot/Main/Main.lu b/SampleBots/ToDoBot/ComposerDialogs/Main/Main.lu similarity index 100% rename from SampleBots/ToDoBot/Main/Main.lu rename to SampleBots/ToDoBot/ComposerDialogs/Main/Main.lu diff --git a/SampleBots/ToDoBot/ShowToDos/ShowToDos.dialog b/SampleBots/ToDoBot/ComposerDialogs/ShowToDos/ShowToDos.dialog similarity index 94% rename from SampleBots/ToDoBot/ShowToDos/ShowToDos.dialog rename to SampleBots/ToDoBot/ComposerDialogs/ShowToDos/ShowToDos.dialog index 9217e40755..77c1eceeb5 100644 --- a/SampleBots/ToDoBot/ShowToDos/ShowToDos.dialog +++ b/SampleBots/ToDoBot/ComposerDialogs/ShowToDos/ShowToDos.dialog @@ -6,7 +6,7 @@ "id": "709692" }, "autoEndDialog": true, - "$schema": "../../app.schema", + "defaultResultProperty": "dialog.result", "events": [ { "$type": "Microsoft.OnBeginDialog", @@ -14,7 +14,6 @@ "id": "783343", "updatedAt": "2019-07-22T08:11:00.380Z" }, - "actions": [ { "$type": "Microsoft.IfCondition", @@ -51,5 +50,6 @@ } ] } - ] -} \ No newline at end of file + ], + "$schema": "../../app.schema" +} diff --git a/SampleBots/ToDoBot/ShowToDos/ShowToDos.lu b/SampleBots/ToDoBot/ComposerDialogs/ShowToDos/ShowToDos.lu similarity index 100% rename from SampleBots/ToDoBot/ShowToDos/ShowToDos.lu rename to SampleBots/ToDoBot/ComposerDialogs/ShowToDos/ShowToDos.lu diff --git a/SampleBots/ToDoBot/common/common.lg b/SampleBots/ToDoBot/ComposerDialogs/common/common.lg similarity index 100% rename from SampleBots/ToDoBot/common/common.lg rename to SampleBots/ToDoBot/ComposerDialogs/common/common.lg diff --git a/SampleBots/ToDoBot/ComposerDialogs/settings/appsettings.json b/SampleBots/ToDoBot/ComposerDialogs/settings/appsettings.json new file mode 100644 index 0000000000..35602f7c12 --- /dev/null +++ b/SampleBots/ToDoBot/ComposerDialogs/settings/appsettings.json @@ -0,0 +1,12 @@ +{ + "MicrosoftAppPassword": "", + "MicrosoftAppId": "", + "luis": { + "name": "", + "authoringKey": "", + "endpointKey": "", + "authoringRegion": "westus", + "defaultLanguage": "en-us", + "environment": "composer" + } +} \ No newline at end of file diff --git a/SampleBots/ToDoLuisBot/AddItem/AddItem.dialog b/SampleBots/ToDoLuisBot/ComposerDialogs/AddItem/AddItem.dialog similarity index 100% rename from SampleBots/ToDoLuisBot/AddItem/AddItem.dialog rename to SampleBots/ToDoLuisBot/ComposerDialogs/AddItem/AddItem.dialog diff --git a/SampleBots/ToDoLuisBot/AddItem/AddItem.lu b/SampleBots/ToDoLuisBot/ComposerDialogs/AddItem/AddItem.lu similarity index 100% rename from SampleBots/ToDoLuisBot/AddItem/AddItem.lu rename to SampleBots/ToDoLuisBot/ComposerDialogs/AddItem/AddItem.lu diff --git a/SampleBots/ToDoLuisBot/DeleteItem/DeleteItem.dialog b/SampleBots/ToDoLuisBot/ComposerDialogs/DeleteItem/DeleteItem.dialog similarity index 100% rename from SampleBots/ToDoLuisBot/DeleteItem/DeleteItem.dialog rename to SampleBots/ToDoLuisBot/ComposerDialogs/DeleteItem/DeleteItem.dialog diff --git a/SampleBots/ToDoLuisBot/DeleteItem/DeleteItem.lu b/SampleBots/ToDoLuisBot/ComposerDialogs/DeleteItem/DeleteItem.lu similarity index 100% rename from SampleBots/ToDoLuisBot/DeleteItem/DeleteItem.lu rename to SampleBots/ToDoLuisBot/ComposerDialogs/DeleteItem/DeleteItem.lu diff --git a/SampleBots/ToDoLuisBot/Main/Main.dialog b/SampleBots/ToDoLuisBot/ComposerDialogs/Main/Main.dialog similarity index 100% rename from SampleBots/ToDoLuisBot/Main/Main.dialog rename to SampleBots/ToDoLuisBot/ComposerDialogs/Main/Main.dialog diff --git a/SampleBots/ToDoLuisBot/Main/Main.lu b/SampleBots/ToDoLuisBot/ComposerDialogs/Main/Main.lu similarity index 100% rename from SampleBots/ToDoLuisBot/Main/Main.lu rename to SampleBots/ToDoLuisBot/ComposerDialogs/Main/Main.lu diff --git a/SampleBots/ToDoLuisBot/ShowItems/ShowItems.dialog b/SampleBots/ToDoLuisBot/ComposerDialogs/ShowItems/ShowItems.dialog similarity index 100% rename from SampleBots/ToDoLuisBot/ShowItems/ShowItems.dialog rename to SampleBots/ToDoLuisBot/ComposerDialogs/ShowItems/ShowItems.dialog diff --git a/SampleBots/ToDoLuisBot/ShowItems/ShowItems.lu b/SampleBots/ToDoLuisBot/ComposerDialogs/ShowItems/ShowItems.lu similarity index 100% rename from SampleBots/ToDoLuisBot/ShowItems/ShowItems.lu rename to SampleBots/ToDoLuisBot/ComposerDialogs/ShowItems/ShowItems.lu diff --git a/SampleBots/ToDoLuisBot/common/common.lg b/SampleBots/ToDoLuisBot/ComposerDialogs/common/common.lg similarity index 100% rename from SampleBots/ToDoLuisBot/common/common.lg rename to SampleBots/ToDoLuisBot/ComposerDialogs/common/common.lg diff --git a/SampleBots/ToDoLuisBot/ComposerDialogs/settings/appsettings.json b/SampleBots/ToDoLuisBot/ComposerDialogs/settings/appsettings.json new file mode 100644 index 0000000000..0ed2add9db --- /dev/null +++ b/SampleBots/ToDoLuisBot/ComposerDialogs/settings/appsettings.json @@ -0,0 +1,12 @@ +{ + "MicrosoftAppPassword": "", + "MicrosoftAppId": "", + "luis": { + "name": "TestAgain", + "authoringKey": "", + "endpointKey": "", + "authoringRegion": "westus", + "defaultLanguage": "en-us", + "environment": "composer2" + } +} \ No newline at end of file