in src/main/resources/static/src/topic.js [109:131]
$scope.filterByType = function (str) {
if ($scope.filterRetry) {
if (str.startsWith("%R")) {
return true
}
}
if ($scope.filterDLQ) {
if (str.startsWith("%D")) {
return true
}
}
if ($scope.filterSystem) {
if (str.startsWith("%S")) {
return true
}
}
if ($scope.filterNormal) {
if (str.startsWith("%") == false) {
return true
}
}
return false;
};