Commit 82d028be authored by Cheryl Li's avatar Cheryl Li Committed by Sean McGivern

Add build_artifacts as feature category

parent b41057f7
...@@ -15,7 +15,7 @@ class Projects::ArtifactsController < Projects::ApplicationController ...@@ -15,7 +15,7 @@ class Projects::ArtifactsController < Projects::ApplicationController
MAX_PER_PAGE = 20 MAX_PER_PAGE = 20
feature_category :continuous_integration feature_category :build_artifacts
def index def index
# Loading artifacts is very expensive in projects with a lot of artifacts. # Loading artifacts is very expensive in projects with a lot of artifacts.
......
...@@ -8,7 +8,7 @@ class Projects::BuildArtifactsController < Projects::ApplicationController ...@@ -8,7 +8,7 @@ class Projects::BuildArtifactsController < Projects::ApplicationController
before_action :extract_ref_name_and_path before_action :extract_ref_name_and_path
before_action :validate_artifacts!, except: [:download] before_action :validate_artifacts!, except: [:download]
feature_category :continuous_integration feature_category :build_artifacts
def download def download
redirect_to download_project_job_artifacts_path(project, job, params: request.query_parameters) redirect_to download_project_job_artifacts_path(project, job, params: request.query_parameters)
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
- auto_devops - auto_devops
- backup_restore - backup_restore
- boards - boards
- build_artifacts
- chatops - chatops
- cloud_native_installation - cloud_native_installation
- cluster_cost_management - cluster_cost_management
...@@ -83,12 +84,14 @@ ...@@ -83,12 +84,14 @@
- mlops - mlops
- mobile_signing_deployment - mobile_signing_deployment
- navigation - navigation
- not_owned
- omnibus_package - omnibus_package
- on_call_schedule_management - on_call_schedule_management
- onboarding - onboarding
- package_registry - package_registry
- pages - pages
- performance_testing - performance_testing
- pipeline_abuse_prevention
- pipeline_authoring - pipeline_authoring
- planning_analytics - planning_analytics
- privacy_control_center - privacy_control_center
...@@ -110,6 +113,7 @@ ...@@ -110,6 +113,7 @@
- self_monitoring - self_monitoring
- serverless - serverless
- service_desk - service_desk
- service_ping
- sharding - sharding
- snippets - snippets
- source_code_management - source_code_management
...@@ -127,7 +131,6 @@ ...@@ -127,7 +131,6 @@
- value_stream_management - value_stream_management
- vulnerability_database - vulnerability_database
- vulnerability_management - vulnerability_management
- web_firewall
- web_ide - web_ide
- wiki - wiki
- workflow_automation - workflow_automation
...@@ -10,7 +10,7 @@ module Projects ...@@ -10,7 +10,7 @@ module Projects
push_frontend_feature_flag(:scan_execution_policy_ui, @project) push_frontend_feature_flag(:scan_execution_policy_ui, @project)
end end
feature_category :web_firewall feature_category :not_owned
# rubocop: disable CodeReuse/ActiveRecord # rubocop: disable CodeReuse/ActiveRecord
def alert_details def alert_details
......
...@@ -4,7 +4,7 @@ module API ...@@ -4,7 +4,7 @@ module API
class JobArtifacts < ::API::Base class JobArtifacts < ::API::Base
before { authenticate_non_get! } before { authenticate_non_get! }
feature_category :continuous_integration feature_category :build_artifacts
# EE::API::JobArtifacts would override the following helpers # EE::API::JobArtifacts would override the following helpers
helpers do helpers do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment