Skip to content

Commit

Permalink
fix(rules): add Zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 2, 2023
1 parent 44a7a59 commit 93eb820
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/rules/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ exports[`all > should match everything 1`] = `
"webpack",
"zendesk",
"zookeeper",
"zoom",
"zuora",
]
`;
1 change: 1 addition & 0 deletions src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ import './snyk.js';
import './sqreen.js';
import './zendesk.js';
import './zuora.js';
import './zoom.js';
7 changes: 7 additions & 0 deletions src/rules/saas/zoom.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'zoom',
name: 'Zoom',
type: 'saas',
});

0 comments on commit 93eb820

Please sign in to comment.