Commit 25c193dc authored by John Hope's avatar John Hope Committed by Bob Van Landuyt

Set product planning apdex urgency

parent 89a365dd
......@@ -4,6 +4,7 @@ class Projects::DesignManagement::DesignsController < Projects::ApplicationContr
before_action :authorize_read_design!
feature_category :design_management
urgency :low
private
......
......@@ -7,6 +7,7 @@ module EE
prepended do
feature_category :portfolio_management, [:epics]
urgency :medium, [:epics]
feature_category :vulnerability_management, [:vulnerabilities]
end
......
......@@ -7,6 +7,7 @@ module EE
prepended do
feature_category :portfolio_management, [:epics]
urgency :medium, [:epics]
feature_category :vulnerability_management, [:vulnerabilities]
end
......
......@@ -12,6 +12,7 @@ class Groups::EpicBoardsController < Groups::ApplicationController
track_redis_hll_event :index, :show, name: 'g_project_management_users_viewing_epic_boards'
feature_category :portfolio_management
urgency :medium, [:index, :show]
private
......
......@@ -7,6 +7,7 @@ class Groups::EpicIssuesController < Groups::ApplicationController
before_action :authorize_issue_link_association!, only: [:destroy, :update]
feature_category :portfolio_management
urgency :default
def update
result = EpicIssues::UpdateService.new(link, current_user, params[:epic]).execute
......
......@@ -7,6 +7,7 @@ class Groups::EpicLinksController < Groups::ApplicationController
before_action :check_subepics_available!, only: [:create, :update]
feature_category :portfolio_management
urgency :default
def update
result = EpicLinks::UpdateService.new(child_epic, current_user, params[:epic]).execute
......
......@@ -11,6 +11,7 @@ class Groups::Epics::NotesController < Groups::ApplicationController
before_action :authorize_create_note!, only: [:create]
feature_category :portfolio_management
urgency :default
private
......
......@@ -26,6 +26,8 @@ class Groups::EpicsController < Groups::ApplicationController
end
feature_category :portfolio_management
urgency :medium, [:show, :new]
urgency :low, [:discussions]
def new
@noteable = Epic.new
......
......@@ -13,6 +13,7 @@ module Groups
end
feature_category :portfolio_management
urgency :medium, [:show]
# show roadmap for a group
def show
......
......@@ -5,6 +5,7 @@ module API
include PaginationParams
feature_category :portfolio_management
urgency :low
before do
authenticate!
......
......@@ -5,6 +5,7 @@ module API
include ::Gitlab::Utils::StrongMemoize
feature_category :portfolio_management
urgency :low
before do
authenticate!
......
......@@ -61,7 +61,7 @@ module API
end
end
[':id/epics', ':id/-/epics'].each do |path|
get path do
get path, urgency: :low do
validate_anonymous_search_access! if declared_params[:search].present?
epics = paginate(find_epics(finder_params: { group_id: user_group.id })).with_api_entity_associations
......
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