mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 02:18:28 -07:00
ceedc2d1ff
Actually, this is a serious refactoring of the query log module. The rest API part is refactored, it's now more clear how the search is conducted. Split the logic into more files and added more tests. Closes: https://github.com/AdguardTeam/AdGuardHome/issues/1559
46 lines
881 B
JavaScript
46 lines
881 B
JavaScript
module.exports = {
|
|
"disableEmoji": true,
|
|
"list": [
|
|
"+",
|
|
"*",
|
|
"-",
|
|
],
|
|
"maxMessageLength": 64,
|
|
"minMessageLength": 3,
|
|
"questions": [
|
|
"type",
|
|
"scope",
|
|
"subject",
|
|
"body",
|
|
"issues"
|
|
],
|
|
"scopes": [
|
|
"",
|
|
"ui",
|
|
"global",
|
|
"dnsfilter",
|
|
"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": "-"
|
|
}
|
|
}
|
|
};
|