Forum Discussion
maba91
May 18, 2021Copper Contributor
Custom app not available in meeting configuration
Hi, I am developing a custom app for teams, and after adding it to my organization, I can’t get the meeting integration working as I’d like. If I go to the ‘apps’ button in the lower left cor...
- May 19, 2021
Hi maba91, You need to mention "meetingSurfaces" object in your manifest as shown in below
"configurableTabs": [ { "configurationUrl": "URL", "canUpdateConfiguration": true, "scopes": [ "groupchat", "team" ], "meetingSurfaces": [ "sidePanel" ], "context": [ "meetingSidePanel", "channelTab", "privateChatTab", "meetingChatTab", "meetingDetailsTab", "meetingSidePanel" ] } ]
Mamatha-MSFT
May 19, 2021Former Employee
Hi maba91, You need to mention "meetingSurfaces" object in your manifest as shown in below
"configurableTabs": [
{
"configurationUrl": "URL",
"canUpdateConfiguration": true,
"scopes": [
"groupchat",
"team"
],
"meetingSurfaces": [
"sidePanel"
],
"context": [
"meetingSidePanel",
"channelTab",
"privateChatTab",
"meetingChatTab",
"meetingDetailsTab",
"meetingSidePanel"
]
}
]