-
Notifications
You must be signed in to change notification settings - Fork 281
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
add actionBasedMessagingExtension from samples repo, update .gitignore #1225
Conversation
Pull Request Test Coverage Report for Build 80964
💛 - Coveralls |
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.
Thanks @stevengum!
import { BotFrameworkAdapter } from 'botbuilder'; | ||
|
||
// This bot's main dialog. | ||
import { TeamsActionExtensionBot } from './teamsActionExtensionBot'; |
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.
Bot is called ActionBasedMessagingExtensionBot on C# side, shall we keep them consistent naming wise? Perhaps renamed the C# one?
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.
I'll rename this one to ActionBasedMessagingBot, to keep it consistent with the already checked-in scenario in C#. I'm going to add *.zip
files to the .gitignore in this PR so we don't check in any zipped up manifests with credentials
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.
Nice!
Fixes: #1225
Description
Adding
messaging-extension-action/
intobotbuilder/tests/teams
.(Note this is not the final form, as the TeamsActivityHandler and ActivityHandler classes are updating, see #1223)