-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
113 lines (113 loc) · 3.64 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"_metadata": {
"major_version": 1,
"minor_version": 1
},
"display_information": {
"name": "SUTD WTH Bot",
"description": "Automated service provider for SUTD What The Hack",
"background_color": "#614633"
},
"features": {
"bot_user": {
"display_name": "SUTD WTH Bot",
"always_online": true
},
"slash_commands": [
{
"command": "/start",
"url": "https://subdomain.domain.tld/<secret-key>/commands",
"description": "Start the bot! 🤖",
"should_escape": true
},
{
"command": "/leaderboard",
"url": "https://subdomain.domain.tld/<secret-key>/commands",
"description": "Display the leaderboard 🏅",
"should_escape": true
},
{
"command": "/judge",
"url": "https://subdomain.domain.tld/<secret-key>/commands",
"description": "Begin judging sequence 👨⚖️",
"should_escape": true
},
{
"command": "/edit",
"url": "https://subdomain.domain.tld/<secret-key>/commands",
"description": "Edit previous judging decision 📝",
"should_escape": true
},
{
"command": "/cancel",
"url": "https://subdomain.domain.tld/<secret-key>/commands",
"description": "Abandon current conversation ❌",
"should_escape": true
},
{
"command": "/summary",
"url": "https://subdomain.domain.tld/<secret-key>/commands",
"description": "View scoring progress so far 📄",
"should_escape": true
},
{
"command": "/randomize",
"url": "https://subdomain.domain.tld/<secret-key>/commands",
"description": "Execute the group randomizer algorithm 🔀",
"should_escape": true
}
]
},
"oauth_config": {
"scopes": {
"user": [
"chat:write"
],
"bot": [
"channels:history",
"channels:read",
"chat:write",
"commands",
"files:read",
"files:write",
"groups:history",
"groups:read",
"groups:write",
"im:history",
"im:read",
"im:write",
"incoming-webhook",
"links:read",
"links:write",
"mpim:history",
"mpim:read",
"mpim:write",
"remote_files:read",
"remote_files:share",
"remote_files:write",
"team:read",
"users:read",
"users:read.email",
"users:write"
]
}
},
"settings": {
"event_subscriptions": {
"request_url": "https://subdomain.domain.tld/<secret-key>/events",
"bot_events": [
"message.channels",
"message.groups",
"message.im",
"message.mpim"
]
},
"interactivity": {
"is_enabled": true,
"request_url": "https://subdomain.domain.tld/<secret-key>/actions"
},
"org_deploy_enabled": false,
"socket_mode_enabled": false,
"token_rotation_enabled": false
}
}