Skip to content
Snippets Groups Projects
Unverified Commit 62701f1e authored by Sam Goldstein's avatar Sam Goldstein Committed by Bob Van Landuyt
Browse files

Update Release endpoint urgency for new error budget opt in

parent d137787e
No related branches found
No related tags found
No related merge requests found
Showing
with 20 additions and 2 deletions
Loading
Loading
@@ -5,6 +5,7 @@ class Admin::DeployKeysController < Admin::ApplicationController
before_action :deploy_key, only: [:destroy, :edit, :update]
 
feature_category :continuous_delivery
urgency :low
 
def index
end
Loading
Loading
Loading
Loading
@@ -12,7 +12,7 @@ class AutocompleteController < ApplicationController
feature_category :code_review, [:merge_request_target_branches]
feature_category :continuous_delivery, [:deploy_keys_with_owners]
 
urgency :low, [:merge_request_target_branches]
urgency :low, [:merge_request_target_branches, :deploy_keys_with_owners]
urgency :default, [:users]
urgency :medium, [:projects]
 
Loading
Loading
Loading
Loading
@@ -4,6 +4,7 @@ class Groups::DeployTokensController < Groups::ApplicationController
before_action :authorize_destroy_deploy_token!
 
feature_category :continuous_delivery
urgency :low
 
def revoke
Groups::DeployTokens::RevokeService.new(@group, current_user, params).execute
Loading
Loading
Loading
Loading
@@ -3,6 +3,7 @@
module Groups
class ReleasesController < Groups::ApplicationController
feature_category :release_evidence
urgency :low
 
def index
respond_to do |format|
Loading
Loading
Loading
Loading
@@ -12,6 +12,7 @@ class RepositoryController < Groups::ApplicationController
end
 
feature_category :continuous_delivery
urgency :low
 
def create_deploy_token
result = Groups::DeployTokens::CreateService.new(@group, current_user, deploy_token_params).execute
Loading
Loading
Loading
Loading
@@ -9,6 +9,7 @@ class Projects::BadgesController < Projects::ApplicationController
feature_category :continuous_integration, [:index, :pipeline]
feature_category :code_testing, [:coverage]
feature_category :release_orchestration, [:release]
urgency :low
 
def pipeline
pipeline_status = Gitlab::Ci::Badge::Pipeline::Status
Loading
Loading
Loading
Loading
@@ -11,6 +11,7 @@ class Projects::DeployKeysController < Projects::ApplicationController
layout 'project_settings'
 
feature_category :continuous_delivery
urgency :low
 
def index
respond_to do |format|
Loading
Loading
Loading
Loading
@@ -4,6 +4,7 @@ class Projects::DeployTokensController < Projects::ApplicationController
before_action :authorize_admin_project!
 
feature_category :continuous_delivery
urgency :low
 
def revoke
@token = @project.deploy_tokens.find(params[:id])
Loading
Loading
Loading
Loading
@@ -4,6 +4,7 @@ class Projects::DeploymentsController < Projects::ApplicationController
before_action :authorize_read_deployment!
 
feature_category :continuous_delivery
urgency :low
 
# rubocop: disable CodeReuse/ActiveRecord
def index
Loading
Loading
Loading
Loading
@@ -27,6 +27,7 @@ class Projects::EnvironmentsController < Projects::ApplicationController
after_action :expire_etag_cache, only: [:cancel_auto_stop]
 
feature_category :continuous_delivery
urgency :low
 
def index
@project = ProjectPresenter.new(project, current_user: current_user)
Loading
Loading
Loading
Loading
@@ -5,6 +5,7 @@ class Projects::FeatureFlagsClientsController < Projects::ApplicationController
before_action :feature_flags_client
 
feature_category :feature_flags
urgency :low
 
def reset_token
feature_flags_client.reset_token!
Loading
Loading
Loading
Loading
@@ -11,6 +11,7 @@ class Projects::FeatureFlagsController < Projects::ApplicationController
before_action :feature_flag, only: [:edit, :update, :destroy]
 
feature_category :feature_flags
urgency :low
 
def index
@feature_flags = FeatureFlagsFinder
Loading
Loading
Loading
Loading
@@ -5,6 +5,7 @@ class Projects::FeatureFlagsUserListsController < Projects::ApplicationControlle
before_action :user_list, only: [:edit, :show]
 
feature_category :feature_flags
urgency :low
 
def index
end
Loading
Loading
Loading
Loading
@@ -8,6 +8,7 @@ class EvidencesController < Projects::ApplicationController
before_action :authorize_read_release_evidence!
 
feature_category :release_evidence
urgency :low
 
def show
respond_to do |format|
Loading
Loading
Loading
Loading
@@ -10,6 +10,7 @@ class Projects::ReleasesController < Projects::ApplicationController
before_action :validate_suffix_path, :fetch_latest_tag, only: :latest_permalink
 
feature_category :release_orchestration
urgency :low
 
def index
respond_to do |format|
Loading
Loading
Loading
Loading
@@ -12,7 +12,7 @@ class RepositoryController < Projects::ApplicationController
 
feature_category :source_code_management, [:show, :cleanup]
feature_category :continuous_delivery, [:create_deploy_token]
urgency :low, [:show]
urgency :low, [:show, :create_deploy_token]
 
def show
render_show
Loading
Loading
Loading
Loading
@@ -9,6 +9,7 @@ class Projects::Tags::ReleasesController < Projects::ApplicationController
before_action :release
 
feature_category :release_evidence
urgency :low
 
def edit
end
Loading
Loading
Loading
Loading
@@ -5,6 +5,7 @@ class OperationsController < ApplicationController
before_action :authorize_read_operations_dashboard!
 
feature_category :release_orchestration
urgency :low
 
POLLING_INTERVAL = 120_000
 
Loading
Loading
Loading
Loading
@@ -7,6 +7,7 @@ class FeatureFlagIssuesController < Projects::ApplicationController
before_action :authorize_admin_feature_flags_issue_links!
 
feature_category :feature_flags
urgency :low
 
private
 
Loading
Loading
Loading
Loading
@@ -7,6 +7,7 @@ class IssueFeatureFlagsController < Projects::ApplicationController
before_action :authorize_admin_feature_flags_issue_links!
 
feature_category :feature_flags
urgency :low
 
private
 
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