Skip to content

Commit dd0cf60

Browse files
authored
First batch of articles about Bot Powered ACEs (SharePoint#9488)
* Initial commit of articles about Bot Powered ACEs * Updated article about building first Bot Powered ACE * Added metadata to articles * Fixed issues in articles, accordingly to guidance * Fixed issues in articles, accordingly to guidance * Finalized initial batch of articles about Bot Powered ACEs * Finalized initial batch of articles about Bot Powered ACEs
1 parent d2f9caa commit dd0cf60

File tree

42 files changed

+811
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+811
-0
lines changed
852 KB
434 KB
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.14/MicrosoftTeams.schema.json",
3+
"manifestVersion": "1.16",
4+
"version": "1.0.0",
5+
"id": "<App-Client-ID>",
6+
"packageName": "collectfeedback.botpoweredace",
7+
"developer": {
8+
"name": "<Your Company name>",
9+
"websiteUrl": "<Your Company WebSite>",
10+
"privacyUrl": "<Your Company Privacy Policy>",
11+
"termsOfUseUrl": "<Your Company Terms of Use>",
12+
"mpnId": "<Your MPN ID>"
13+
},
14+
"name": {
15+
"short": "Collect Feedaback Bot Powered ACE",
16+
"full": "This is a basic sample of a Bot Powered ACE for Microsoft Viva Connections Dashboard to collect user's feedback"
17+
},
18+
"description": {
19+
"short": "Basic sample of a Bot Powered ACE for Microsoft Viva Connections Dashboard to collect user's feedback",
20+
"full": "Basic sample of how to use the latest release of the Bot Framework SDK to build a Bot Powered ACE for Microsoft Viva Connections Dashboard to collect user's feedback"
21+
},
22+
"icons": {
23+
"outline": "icon-outline.png",
24+
"color": "icon-color.png"
25+
},
26+
"accentColor": "#FFFFFF",
27+
"bots": [
28+
{
29+
"botId": "<App-Client-ID>",
30+
"needsChannelSelector": false,
31+
"isNotificationOnly": false,
32+
"supportsCalling": false,
33+
"supportsVideo": false,
34+
"supportsFiles": false,
35+
"scopes": [
36+
"team",
37+
"personal",
38+
"groupchat"
39+
]
40+
}
41+
],
42+
"dashboardCards": [
43+
{
44+
"id": "<App-Client-ID>",
45+
"displayName": "Collect Feedaback",
46+
"description": "Bot Powered ACE to collect user's feedback",
47+
"icon": {
48+
"officeUIFabricIconName": "Feedback"
49+
},
50+
"contentSource": {
51+
"sourceType": "bot",
52+
"botConfiguration": {
53+
"botId": "<App-Client-ID>"
54+
}
55+
},
56+
"defaultSize": "medium"
57+
}
58+
],
59+
"permissions": [
60+
"identity"
61+
],
62+
"validDomains": [
63+
"<your-ngrok-reverse-proxy-name>.ngrok.io"
64+
]
65+
}

docs/spfx/viva/bot-powered/Building-Your-First-Bot-Powered-ACE.md

Lines changed: 662 additions & 0 deletions
Lines changed: 29 additions & 0 deletions
Lines changed: 55 additions & 0 deletions

0 commit comments

Comments
 (0)