Change default mentionRole value to none

cshd
Dragory 2021-01-07 20:11:57 +02:00
parent b95c134a02
commit 4a2edc6267
No known key found for this signature in database
GPG Key ID: 5F387BA66DF8AAC1
3 changed files with 3 additions and 4 deletions

View File

@ -264,10 +264,9 @@ Alias for [mainServerId](#mainServerId)
Alias for [inboxServerId](#inboxServerId)
#### mentionRole
**Default:** `here`
**Default:** `none`
**Accepts multiple values.** Role that is mentioned when new threads are created or the bot is mentioned.
Accepted values are `none`, `here`, `everyone`, or a role id.
Requires `pingOnBotMention` to be enabled.
Set to `none` to disable these pings entirely.
#### mentionUserInThreadHeader

View File

@ -15,7 +15,7 @@
* @property {string} [closeMessage]
* @property {boolean} [allowUserClose=false]
* @property {string} [newThreadCategoryId]
* @property {string} [mentionRole="here"]
* @property {string} [mentionRole="none"]
* @property {boolean} [pingOnBotMention=true]
* @property {string} [botMentionResponse]
* @property {array} [inboxServerPermission=["manageMessages"]]

View File

@ -103,7 +103,7 @@
},
"mentionRole": {
"type": "string",
"default": "here"
"default": "none"
},
"pingOnBotMention": {
"$ref": "#/definitions/customBoolean",