Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use API v2 in web client #1153

Merged
merged 24 commits into from
Nov 5, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add todo for later, remove filter local
  • Loading branch information
RomainMaillot committed Oct 31, 2022
commit 9677141b0eb35f7bbad8c350d1fc07347351fc7b
1 change: 1 addition & 0 deletions web/client/src/views/Scan.vue
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ export default Vue.extend({
try {
const res = await axios.get(`${config.apiUrl}/v2/scanners`);

// TODO: Remove this filter once the scanner local is remove
this.scanners = res.data.scanners.filter(
(scanner: ScannerObject) => scanner.name !== "local"
);
Expand Down