-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (37 loc) · 873 Bytes
/
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
{
"display_information": {
"name": "Mention Reminder",
"description": "Mention Reminder is a custom Slack app that allows you to set up reminders simply by mentioning its bot!",
"background_color": "#1d253d"
},
"features": {
"bot_user": {
"display_name": "Mention Reminder",
"always_online": true
}
},
"oauth_config": {
"scopes": {
"bot": [
"app_mentions:read",
"mpim:write",
"im:write",
"chat:write.public",
"chat:write"
]
}
},
"settings": {
"event_subscriptions": {
"bot_events": [
"app_mention"
]
},
"interactivity": {
"is_enabled": true
},
"socket_mode_enabled": true,
"org_deploy_enabled": true,
"token_rotation_enabled": false
}
}