-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
72 lines (72 loc) · 2.37 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
72
{
"display_information": {
"name": "Ready to Fly (Apex SDK version)",
"description": "Ready to Fly app using the Apex SDK for Slack"
},
"features": {
"app_home": {
"home_tab_enabled": true,
"messages_tab_enabled": true,
"messages_tab_read_only_enabled": true
},
"bot_user": {
"display_name": "Ready to Fly (Apex SDK)",
"always_online": false
},
"shortcuts": [
{
"name": "Create Travel Request",
"type": "global",
"callback_id": "apex-create-travel-request-global",
"description": "Create a travel request using a slack global shortcut."
}
],
"slash_commands": [
{
"command": "/view-travel-request-status",
"url": "https://slack-apps.salesforce.com:9443/a/APP_ID",
"description": "Allows to view travel requests status",
"usage_hint": "/view-travel-request-status travelRequestName",
"should_escape": false
}
]
},
"oauth_config": {
"redirect_urls": [
"https://auth.slack-apps.salesforce.com/slack_oauth_callback/APP_ID"
],
"scopes": {
"user": ["reactions:read", "chat:write"],
"bot": [
"channels:read",
"chat:write",
"commands",
"groups:read",
"reactions:read",
"users:read"
]
}
},
"settings": {
"event_subscriptions": {
"request_url": "https://slack-apps.salesforce.com:9443/a/APP_ID",
"bot_events": [
"app_home_opened",
"app_uninstalled",
"grid_migration_finished",
"grid_migration_started",
"team_access_granted",
"team_access_revoked",
"tokens_revoked"
]
},
"interactivity": {
"is_enabled": true,
"request_url": "https://slack-apps.salesforce.com:9443/a/APP_ID",
"message_menu_options_url": "https://slack-apps.salesforce.com:9443/a/APP_ID"
},
"org_deploy_enabled": false,
"socket_mode_enabled": false,
"token_rotation_enabled": false
}
}