Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9e903777
Commit
9e903777
authored
Nov 17, 2020
by
Fernando
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing security report translation
* Add entry for API Fuzzing
parent
efb2baf3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
ee/app/assets/javascripts/security_dashboard/components/project_vulnerabilities.vue
...security_dashboard/components/project_vulnerabilities.vue
+1
-0
ee/spec/frontend/security_dashboard/components/project_vulnerabilities_spec.js
...rity_dashboard/components/project_vulnerabilities_spec.js
+4
-1
No files found.
ee/app/assets/javascripts/security_dashboard/components/project_vulnerabilities.vue
View file @
9e903777
...
...
@@ -110,6 +110,7 @@ export default {
},
},
i18n
:
{
API_FUZZING
:
__
(
'
API Fuzzing
'
),
CONTAINER_SCANNING
:
__
(
'
Container Scanning
'
),
COVERAGE_FUZZING
:
__
(
'
Coverage Fuzzing
'
),
SECRET_DETECTION
:
__
(
'
Secret Detection
'
),
...
...
ee/spec/frontend/security_dashboard/components/project_vulnerabilities_spec.js
View file @
9e903777
...
...
@@ -152,7 +152,10 @@ describe('Vulnerabilities app component', () => {
});
it
(
'
should pass the security scanners to the vulnerability list
'
,
()
=>
{
const
securityScanners
=
{
enabled
:
[
'
SAST
'
,
'
DAST
'
],
pipelineRun
:
[
'
SAST
'
,
'
DAST
'
]
};
const
securityScanners
=
{
enabled
:
[
'
SAST
'
,
'
DAST
'
,
'
API_FUZZING
'
,
'
COVERAGE_FUZZING
'
],
pipelineRun
:
[
'
SAST
'
,
'
DAST
'
,
'
API_FUZZING
'
,
'
COVERAGE_FUZZING
'
],
};
wrapper
.
setData
({
securityScanners
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment