-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
101 lines (101 loc) · 2.45 KB
/
Copy pathplugin.json
File metadata and controls
101 lines (101 loc) · 2.45 KB
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
{
"name": "adb-plugin-automod",
"displayName": "Automod",
"version": "1.3.0",
"manifestVersion": 2,
"description": "automod plugin for ADB",
"author": "DeadIndian",
"main": "index.js",
"requiresRestart": false,
"process": {
"model": "pooled",
"maxExecutionMs": 5000,
"memoryMb": 128,
"persistentReason": null
},
"capabilities": [
"storage:own-collection",
"hooks:subscribe"
],
"permissions": {
"discord": [
"SendMessages",
"ManageMessages",
"ModerateMembers"
]
},
"discordPermissions": [
"SendMessages",
"ManageMessages",
"ModerateMembers"
],
"engines": {
"core": ">=2.0.0",
"plugins": {
"administration": ">=2.0.0"
}
},
"settings": {
"commandPermissions": true,
"schema": [
{
"key": "enabled",
"type": "boolean",
"label": "Enable automod",
"default": true
},
{
"key": "logChannelId",
"type": "channel",
"label": "Automod log channel"
}
]
},
"dashboard": {
"permissions": [
{ "key": "view", "label": "View", "description": "See automod rules and incident logs." },
{ "key": "configure", "label": "Configure", "description": "Toggle automod and set the log channel." },
{ "key": "manage-rules", "label": "Manage rules", "description": "Create, edit, and delete automod rules and whitelists." }
]
},
"webUi": {
"memberPages": [
{
"path": "/me/violations",
"label": "My AutoMod Record",
"icon": "ShieldAlert",
"source": {
"model": "violation",
"scope": "member",
"sort": { "createdAt": -1 },
"limit": 50
},
"view": {
"type": "table",
"columns": [
{ "field": "ruleType", "label": "Rule" },
{ "field": "action", "label": "Action" },
{ "field": "reason", "label": "Reason" },
{ "field": "createdAt", "label": "When" }
],
"empty": "You have no AutoMod violations in this server."
}
}
]
},
"configSchema": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true,
"description": "Enable this plugin for the server"
},
"logChannelId": {
"type": "string",
"default": null,
"description": "Discord channel ID where automod incidents are logged"
}
}
}
}