AdGuardHome/changelog.config.js
Andrey Meshkov ceedc2d1ff *(querylog): added offset/limit parameters
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
2020-05-26 15:37:37 +03:00

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": "-"
}
}
};