-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.json
78 lines (78 loc) · 1.77 KB
/
commands.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
[
{
"name": "autoresponder",
"description": "Manage the auto-responder rules",
"type": 1,
"options": [
{
"name": "reload",
"description": "Load the changes made to the autoresponder rules",
"type": 1
},
{
"name": "add",
"description": "Add a new auto-responder rule",
"type": 1
},
{
"name": "remove",
"description": "Remove an existing auto-responder rule",
"type": 1,
"options": [
{
"name": "triggerphrase",
"description": "The trigger phrase of the rule to remove",
"type": 3,
"required": true
}
]
},
{
"name": "view",
"description": "View all registered auto-responder rules",
"type": 1
}
],
"default_member_permissions": 8
},
{
"name": "ping",
"description": "Check the bot's latency to the Discord API and PostgreSQL",
"type": 1,
"default_member_permissions": 0,
"options": [
{
"name": "ephemeral",
"description": "Choose whether the response should be ephemeral",
"type": 5,
"required": false
}
]
},
{
"name": "events",
"description": "Manage and view events",
"type": 1,
"options": [
{
"name": "latest",
"description": "Get the latest event, title, description, and link",
"type": 1
},
{
"name": "list",
"description": "List all events",
"type": 1,
"options": [
{
"name": "limit",
"description": "Number of events to list",
"type": 4,
"required": false
}
]
}
],
"default_member_permissions": 0
}
]