I am developing a MS Team app which has a Tab and a Notification only Bot.
How can i add a deep link to my tab when the user clicks on the Notification from the Activity Feed.
Sending the notification like below.
const activity = {
attachments: [card],
text: 'Notification Text',
summary: 'Notification Summary',
channelData: {
notification: {
alert: true
}
}
};
await turnContext.sendActivity(activity);