-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
71 lines (71 loc) · 1.82 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"display_information": {
"name": "Wheatley",
"description": "Your friendly Antistatique assistant",
"background_color": "#12192a"
},
"features": {
"bot_user": {
"display_name": "wheatley",
"always_online": true
},
"slash_commands": [
{
"command": "/order",
"url": "https://slackbot.alwaysdata.net/slack/events",
"description": "par exemple “/order mami”",
"usage_hint": "Commande de nourriture",
"should_escape": false
},
{
"command": "/mykudos",
"url": "https://slackbot.alwaysdata.net/slack/events",
"description": "total des kudos",
"usage_hint": "kudos",
"should_escape": false
},
{
"command": "/weeklykudos",
"url": "https://slackbot.alwaysdata.net/slack/events",
"description": "total des kudos par semaine",
"usage_hint": "kudos",
"should_escape": false
}
]
},
"oauth_config": {
"scopes": {
"bot": [
"chat:write",
"channels:join",
"chat:write.public",
"commands",
"incoming-webhook",
"users:read",
"app_mentions:read",
"channels:history",
"im:history",
"reactions:read"
]
}
},
"settings": {
"event_subscriptions": {
"request_url": "https://slackbot.alwaysdata.net/slack/events",
"bot_events": [
"app_mention",
"message.channels",
"message.im",
"reaction_added"
]
},
"interactivity": {
"is_enabled": true,
"request_url": "https://slackbot.alwaysdata.net/slack/events",
"message_menu_options_url": "https://slackbot.alwaysdata.net/slack/events"
},
"org_deploy_enabled": false,
"socket_mode_enabled": false,
"token_rotation_enabled": false
}
}