Skip to content
Snippets Groups Projects
Commit ac6a781a authored by Bob Van Landuyt :neckbeard:'s avatar Bob Van Landuyt :neckbeard: :sunglasses:
Browse files

Merge branch 'samgerrorbudgetthreatinsight' into 'master'

Update threat insights endpoint urgency for new error budget opt in

See merge request gitlab-org/gitlab!86698
parents 86d13fae 46bb86af
No related branches found
No related tags found
No related merge requests found
Showing
with 18 additions and 6 deletions
Loading
Loading
@@ -9,6 +9,7 @@ module AutocompleteSourcesController
feature_category :portfolio_management, [:epics]
urgency :medium, [:epics]
feature_category :vulnerability_management, [:vulnerabilities]
urgency :low, [:vulnerabilities]
end
 
def epics
Loading
Loading
Loading
Loading
@@ -9,6 +9,7 @@ module AutocompleteSourcesController
feature_category :portfolio_management, [:epics]
urgency :medium, [:epics]
feature_category :vulnerability_management, [:vulnerabilities]
urgency :low, [:vulnerabilities]
end
 
def epics
Loading
Loading
Loading
Loading
@@ -37,12 +37,11 @@ module MergeRequestsController
feature_category :code_review, [:delete_description_version, :description_diff]
 
urgency :high, [:delete_description_version]
urgency :low, [:description_diff]
urgency :low, [
:sast_reports,
:secret_detection_reports
]
urgency :low, [:metrics_reports]
urgency :low, [:container_scanning_reports,
:dependency_scanning_reports, :sast_reports,
:secret_detection_reports, :dast_reports,
:coverage_fuzzing_reports, :api_fuzzing_reports,
:metrics_reports, :description_diff]
end
 
def can_run_sast_experiments_on?(project)
Loading
Loading
Loading
Loading
@@ -19,6 +19,7 @@ module PipelinesController
feature_category :vulnerability_management, [:security]
feature_category :code_quality, [:codequality_report]
 
urgency :low, [:security]
urgency :low, [:codequality_report]
end
 
Loading
Loading
Loading
Loading
@@ -3,6 +3,7 @@ class Groups::Security::DashboardController < Groups::ApplicationController
layout 'group'
 
feature_category :vulnerability_management
urgency :low
 
before_action do
push_frontend_feature_flag(:vulnerability_management_survey, type: :ops)
Loading
Loading
Loading
Loading
@@ -4,6 +4,7 @@ class Groups::Security::DiscoverController < Groups::ApplicationController
layout 'group'
 
feature_category :vulnerability_management
urgency :low
 
def show
render_404 unless helpers.show_discover_group_security?(@group)
Loading
Loading
Loading
Loading
@@ -10,6 +10,7 @@ class VulnerabilitiesController < Groups::ApplicationController
end
 
feature_category :vulnerability_management
urgency :low
 
def index
render :unavailable unless dashboard_available?
Loading
Loading
Loading
Loading
@@ -14,6 +14,7 @@ class DashboardController < Projects::ApplicationController
end
 
feature_category :vulnerability_management
urgency :low
end
end
end
Loading
Loading
@@ -15,6 +15,7 @@ class NotesController < Projects::ApplicationController
before_action :authorize_create_note!, only: [:create]
 
feature_category :vulnerability_management
urgency :low
 
private
 
Loading
Loading
Loading
Loading
@@ -18,6 +18,7 @@ class VulnerabilitiesController < Projects::ApplicationController
alias_method :vulnerable, :project
 
feature_category :vulnerability_management
urgency :low
 
def show
pipeline = vulnerability.finding.first_finding_pipeline
Loading
Loading
Loading
Loading
@@ -11,6 +11,7 @@ class VulnerabilityReportController < Projects::ApplicationController
end
 
feature_category :vulnerability_management
urgency :low
 
alias_method :vulnerable, :project
end
Loading
Loading
Loading
Loading
@@ -9,6 +9,7 @@ class ApplicationController < ::ApplicationController
end
 
feature_category :vulnerability_management
urgency :low
 
protected
 
Loading
Loading
Loading
Loading
@@ -6,6 +6,7 @@ class VulnerabilityExports < ::API::Base
include ::Gitlab::Utils::StrongMemoize
 
feature_category :vulnerability_management
urgency :low
 
helpers do
def vulnerability_export
Loading
Loading
Loading
Loading
@@ -5,6 +5,7 @@ class VulnerabilityIssueLinks < ::API::Base
include ::API::Helpers::VulnerabilitiesHooks
 
feature_category :vulnerability_management
urgency :low
 
helpers ::API::Helpers::VulnerabilitiesHelpers
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment