-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
33 lines (33 loc) · 1.08 KB
/
plugin.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
{
"id": "mattermost-profanity-filter",
"name": "Profanity Filter",
"description": "For filtering out naughty words.",
"version": "0.1.1",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"settings_schema": {
"settings": [
{
"key": "RejectPosts",
"display_name": "Reject Posts",
"type": "bool",
"help_text": "If set the plugin will reject posts containing profanity instead of censoring."
},
{
"key": "CensorCharacter",
"display_name": "Censor Character",
"type": "text",
"help_text": "The character(s) to use to censor profanity. Censored words' letters will be replaced with this character. Note that markdown will be interpreted. You can escape markdown character with a backslash. For using * you type \\*.",
"placeholder": "Ex. \\*",
"default": "\\*"
}
],
"header": "",
"footer": ""
}
}