Skip to content

Commit f7aec64

Browse files
authored
Merge pull request #50 from cloudgraphdev/fix/remove-account-from-scan-report
fix: removed account from scan report
2 parents c10fea0 + 50a38d9 commit f7aec64

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/reports/scan-report.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,13 @@ enum statusKeyWords {
2525
connections = 'connections',
2626
}
2727

28-
const servicesToIgnore = [/^tag$/, /^label$/, /^billing$/, /Findings$/]
28+
const servicesToIgnore = [
29+
/^account$/,
30+
/^tag$/,
31+
/^label$/,
32+
/^billing$/,
33+
/Findings$/,
34+
]
2935

3036
// TODO: come back and add tests once testing strategy is determined
3137
export class ScanReport {

0 commit comments

Comments
 (0)