-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslack_app_manifest.json
45 lines (45 loc) · 1.07 KB
/
slack_app_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
{
"_metadata": {
"major_version": 1,
"minor_version": 1
},
"display_information": {
"name": "Wordpress Liveblog",
"description": "It shares Slack messages with your Wordpress site",
"background_color": "#890309"
},
"features": {
"bot_user": {
"display_name": "Liveblog bot",
"always_online": true
}
},
"oauth_config": {
"scopes": {
"bot": [
"groups:history",
"groups:write",
"incoming-webhook",
"reactions:read",
"users:read",
"conversations.connect:write"
]
},
"redirect_urls": [
"###REDIRECT_URL###"
]
},
"settings": {
"event_subscriptions": {
"request_url": "###SITE_URL###/slack_liveblog_events",
"bot_events": [
"message.groups",
"reaction_added",
"reaction_removed"
]
},
"org_deploy_enabled": false,
"socket_mode_enabled": false,
"token_rotation_enabled": false
}
}