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
b5d06c5d
Commit
b5d06c5d
authored
Feb 22, 2021
by
Dheeraj Joshi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove pipeline security report feature flag
parent
db66f1cf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
14 deletions
+0
-14
app/controllers/projects/pipelines_controller.rb
app/controllers/projects/pipelines_controller.rb
+0
-1
config/feature_flags/development/pipelines_security_report_summary.yml
...e_flags/development/pipelines_security_report_summary.yml
+0
-8
ee/app/assets/javascripts/security_dashboard/components/pipeline_security_dashboard.vue
...rity_dashboard/components/pipeline_security_dashboard.vue
+0
-5
No files found.
app/controllers/projects/pipelines_controller.rb
View file @
b5d06c5d
...
...
@@ -13,7 +13,6 @@ class Projects::PipelinesController < Projects::ApplicationController
before_action
:authorize_create_pipeline!
,
only:
[
:new
,
:create
,
:config_variables
]
before_action
:authorize_update_pipeline!
,
only:
[
:retry
,
:cancel
]
before_action
do
push_frontend_feature_flag
(
:pipelines_security_report_summary
,
project
,
default_enabled: :yaml
)
push_frontend_feature_flag
(
:new_pipeline_form
,
project
,
default_enabled: :yaml
)
push_frontend_feature_flag
(
:graphql_pipeline_details
,
project
,
type: :development
,
default_enabled: :yaml
)
push_frontend_feature_flag
(
:graphql_pipeline_details_users
,
current_user
,
type: :development
,
default_enabled: :yaml
)
...
...
config/feature_flags/development/pipelines_security_report_summary.yml
deleted
100644 → 0
View file @
db66f1cf
---
name
:
pipelines_security_report_summary
introduced_by_url
:
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/31136
rollout_issue_url
:
https://gitlab.com/gitlab-org/gitlab/-/issues/235943
milestone
:
'
13.0'
type
:
development
group
:
group::dynamic analysis
default_enabled
:
true
ee/app/assets/javascripts/security_dashboard/components/pipeline_security_dashboard.vue
View file @
b5d06c5d
...
...
@@ -3,7 +3,6 @@ import { GlEmptyState } from '@gitlab/ui';
import
{
mapActions
}
from
'
vuex
'
;
import
{
fetchPolicies
}
from
'
~/lib/graphql
'
;
import
{
s__
}
from
'
~/locale
'
;
import
glFeatureFlagsMixin
from
'
~/vue_shared/mixins/gl_feature_flags_mixin
'
;
import
pipelineSecurityReportSummaryQuery
from
'
../graphql/queries/pipeline_security_report_summary.query.graphql
'
;
import
SecurityDashboard
from
'
./security_dashboard_vuex.vue
'
;
import
SecurityReportsSummary
from
'
./security_reports_summary.vue
'
;
...
...
@@ -15,7 +14,6 @@ export default {
SecurityReportsSummary
,
SecurityDashboard
,
},
mixins
:
[
glFeatureFlagsMixin
()],
apollo
:
{
securityReportSummary
:
{
query
:
pipelineSecurityReportSummaryQuery
,
...
...
@@ -30,9 +28,6 @@ export default {
const
summary
=
data
?.
project
?.
pipeline
?.
securityReportSummary
;
return
summary
&&
Object
.
keys
(
summary
).
length
?
summary
:
null
;
},
skip
()
{
return
!
this
.
glFeatures
.
pipelinesSecurityReportSummary
;
},
},
},
props
:
{
...
...
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