-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[Teams] Link unfurling sample updates (dotnet) #1902
Conversation
// Send a message to the user | ||
await turnContext.SendActivityAsync("The bot encounted an error or bug."); | ||
await turnContext.SendActivityAsync("To continue to run this bot, please fix the bot source code."); | ||
// Note: Since this Messaging Extension does not have the messageTeamMembers permission |
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.
This is an open question. Do we want to cut out the commented out lines of this sample? I'm not opposed to having them, but it looks to be inconsistent with other samples.
The TeamsMessagingExtensionSearch has the lines in, but doesn't have the messageTeamMembers permission in the manifest.
The TeamsMessagingExtensionAction has the lines commented out, but also does not have the permission in the manifest.
Remove messaging (since this is a Messaging Extension that does not send messages)
Remove Bot from manifest
Add deployment templates
Update readme