mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-15 09:58:42 -07:00
7f2f8de922
Merge in DNS/adguard-home from imp-naming to master Squashed commit of the following: commit d9e75c37af9a738384393735c141a41406d22eeb Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu May 13 15:52:14 2021 +0300 all: less annoying pkg names
46 lines
891 B
JavaScript
46 lines
891 B
JavaScript
module.exports = {
|
|
"disableEmoji": true,
|
|
"list": [
|
|
"+ ",
|
|
"* ",
|
|
"- ",
|
|
],
|
|
"maxMessageLength": 64,
|
|
"minMessageLength": 3,
|
|
"questions": [
|
|
"type",
|
|
"scope",
|
|
"subject",
|
|
"body",
|
|
"issues",
|
|
],
|
|
"scopes": [
|
|
"",
|
|
"ui",
|
|
"global",
|
|
"filtering",
|
|
"home",
|
|
"dnsforward",
|
|
"dhcpd",
|
|
"querylog",
|
|
"documentation",
|
|
],
|
|
"types": {
|
|
"+ ": {
|
|
"description": "A new feature",
|
|
"emoji": "",
|
|
"value": "+ "
|
|
},
|
|
"* ": {
|
|
"description": "A code change that neither fixes a bug or adds a feature",
|
|
"emoji": "",
|
|
"value": "* "
|
|
},
|
|
"- ": {
|
|
"description": "A bug fix",
|
|
"emoji": "",
|
|
"value": "- "
|
|
}
|
|
}
|
|
};
|