2019-07-24 07:26:21 -07:00
|
|
|
module.exports = {
|
|
|
|
"disableEmoji": true,
|
|
|
|
"list": [
|
|
|
|
"+",
|
|
|
|
"*",
|
|
|
|
"-",
|
|
|
|
],
|
|
|
|
"maxMessageLength": 64,
|
|
|
|
"minMessageLength": 3,
|
|
|
|
"questions": [
|
|
|
|
"type",
|
|
|
|
"scope",
|
|
|
|
"subject",
|
|
|
|
"body",
|
|
|
|
"issues"
|
|
|
|
],
|
|
|
|
"scopes": [
|
|
|
|
"",
|
2020-05-26 05:37:37 -07:00
|
|
|
"ui",
|
2019-07-24 07:26:21 -07:00
|
|
|
"global",
|
|
|
|
"dnsfilter",
|
|
|
|
"home",
|
|
|
|
"dnsforward",
|
|
|
|
"dhcpd",
|
2020-05-26 05:37:37 -07:00
|
|
|
"querylog",
|
|
|
|
"documentation",
|
2019-07-24 07:26:21 -07:00
|
|
|
],
|
|
|
|
"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": "-"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|