-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
57 lines (57 loc) · 1.44 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"display_information": {
"name": "VannaAI",
"background_color": "#373940"
},
"features": {
"bot_user": {
"display_name": "VannaAI",
"always_online": false
},
"slash_commands": [
{
"command": "/askvanna",
"url": "https://af63-67-80-18-192.ngrok-free.app/slash",
"description": "Chat with Vanna",
"usage_hint": "<Enter text>",
"should_escape": false
}
]
},
"oauth_config": {
"redirect_urls": [
"https://af63-67-80-18-192.ngrok-free.app/oauth"
],
"scopes": {
"bot": [
"channels:history",
"channels:read",
"commands",
"groups:history",
"groups:read",
"groups:write",
"im:history",
"mpim:history",
"im:read",
"mpim:read",
"chat:write",
"files:write"
]
}
},
"settings": {
"event_subscriptions": {
"request_url": "https://af63-67-80-18-192.ngrok-free.app/event",
"bot_events": [
"app_home_opened",
"message.channels",
"message.groups",
"message.im",
"message.mpim"
]
},
"org_deploy_enabled": false,
"socket_mode_enabled": false,
"token_rotation_enabled": false
}
}