Commit 1f2f7466 authored by Bob Van Landuyt's avatar Bob Van Landuyt

Merge branch 'certify_add_apdex_urgency' into 'master'

Certify add apdex urgency

See merge request gitlab-org/gitlab!79446
parents f9e06ba8 38a68df3
......@@ -71,6 +71,7 @@ class Projects::IssuesController < Projects::ApplicationController
]
feature_category :service_desk, [:service_desk]
urgency :low, [:service_desk]
feature_category :importers, [:import_csv, :export_csv]
attr_accessor :vulnerability_id
......
......@@ -4,6 +4,7 @@ class Projects::ServiceDeskController < Projects::ApplicationController
before_action :authorize_admin_project!
feature_category :service_desk
urgency :low
def show
json_response
......
......@@ -8,6 +8,7 @@ class Projects::Quality::TestCasesController < Projects::ApplicationController
before_action :authorize_create_test_case!, only: [:new]
feature_category :quality_management
urgency :medium
def index
respond_to do |format|
......
......@@ -9,6 +9,8 @@ class Projects::RequirementsManagement::RequirementsController < Projects::Appli
before_action :authorize_import_access!, only: [:import_csv, :authorize]
feature_category :requirements_management
urgency :medium, [:index, :authorize]
urgency :low, [:import_csv]
def index
respond_to do |format|
......
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