-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rebuild bot implementation - Solves #237 & #246 #257
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See review comments.
packages/generator-teams/src/app/templates/src/server/server.ts
Outdated
Show resolved
Hide resolved
packages/generator-teams/src/bot/templates/src/server/{botName}/dialogs/mainDialog.ts
Show resolved
Hide resolved
packages/generator-teams/src/bot/templates/src/server/{botName}/dialogs/mainDialog.ts
Show resolved
Hide resolved
Thanks for the comments, I added my thoughts. In any case I'd like to make all tests green as well as changing the obvious things you mentioned before we continue 👍🏻 |
packages/generator-teams/src/bot/templates/src/server/{botName}/dialogs/helpDialog.ts
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good and tests are working fine.
However the linting fails when scaffolding a bot - when those linting issues are cleaned up we can merge it into a preview
Let me work on that asap so that linting issues are resolved |
Linting errors should be all fixed now, so we are good to go I guess |
I rebuilt the bot implementation so that it aligns more with the official botbuilder samples and it allows devs to extend it with their dialogs quite easily.
Additionally, we can use this new template to add SSO functionality in the future as well, with little effort.
It should solve #237 and #246